@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
* {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  list-style: none;
}

html {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  display: grid;
  background-color: rgba(96, 76, 76, 0.6);
  grid-template-rows: auto 1fr auto;
}
body header {
  height: 10vh;
  display: grid;
  align-items: center;
  color: white;
  z-index: 1;
  background-color: rgba(96, 76, 76, 0.6);
}
body header .highlight {
  color: orange;
}
body header nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
body header nav .logo img {
  width: 80px;
}
body header nav .kava {
  padding-left: 50px;
}
body header nav .container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-self: right;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
}
body header nav .container .rozdelenie {
  display: grid;
  grid-template-columns: repeat(4, auto);
}
body header nav .container .vozik img {
  max-width: 35px;
  height: auto;
}
body header nav .container .vozik img:hover {
  border: solid white 1px;
  border-radius: 100px;
  cursor: pointer;
}
body header nav .container div {
  margin-right: 50px;
}
body header nav .container a {
  color: white;
}
body header nav .container a:hover {
  border-bottom: solid 2px white;
  color: orange;
  font-size: 21px;
}
body header nav .highlight {
  color: orange;
}
body header nav .highlight:hover {
  color: white;
}
@media (max-width: 400px) {
  body header nav {
    grid-template-columns: auto 1fr;
  }
  body header nav .kava {
    display: none;
  }
  body header nav .container .rozdelenie {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, auto);
  }
  body header nav .container .vozik {
    align-self: center;
  }
}
@media (max-width: 700px) {
  body header nav {
    grid-template-columns: auto 1fr;
  }
  body header nav .kava {
    display: none;
  }
  body header nav .container .rozdelenie {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, auto);
  }
  body header nav .container .vozik {
    align-self: center;
  }
}
@media (max-width: 1000px) {
  body header nav {
    grid-template-columns: 1fr auto 1fr;
  }
  body header nav .container .rozdelenie {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, auto);
  }
  body header nav .container .vozik {
    align-self: center;
  }
}
body .pozadie {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 90vh;
  width: 100%;
  background-image: linear-gradient(to bottom right, rgba(96, 76, 76, 0), rgb(96, 76, 76)), url(../media/bar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: solid black 5px;
}
body .pozadie .text {
  color: orange;
  font-size: 40px;
  margin-top: 250px;
}
body .pozadie .text .txt {
  color: white;
  font-size: 25px;
}
body .pozadie .text .dole {
  color: white;
  font-size: 15px;
  margin-top: 200px;
}
body main {
  display: grid;
  grid-template-columns: auto;
  margin: 0px;
  background-color: rgba(19, 29, 13, 0.945);
}
body main .txt {
  text-align: center;
  background-color: rgba(19, 29, 13, 0.945);
  padding-top: 25px;
  color: orange;
  border-bottom: solid white 1px;
  padding-bottom: 25px;
  font-size: 35px;
}
body main .search {
  overflow: hidden;
  background-color: rgb(21, 44, 11);
  padding: 15px;
  border-bottom: solid 1px white;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
}
body main .search input[type=text] {
  padding: 6px;
  border: none;
  font-size: 17px;
}
body main .search button {
  padding: 6px;
  border: none;
  font-size: 17px;
  background-color: grey;
  cursor: pointer;
}
body main .search button:hover {
  background-color: white;
}
body main .shop {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgba(19, 29, 13, 0.945);
  padding: 50px 0;
}
@media (min-width: 976px) {
  body main .shop {
    grid-template-columns: repeat(3, auto);
  }
}
@media (max-width: 975px) {
  body main .shop {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 655px) {
  body main .shop {
    grid-template-columns: repeat(1, auto);
  }
}
body main .shop img {
  width: 278px;
  border: solid white 1px;
}
body main .shop img:hover {
  transform: scale(1.03);
  transition: transform 0.4s ease-in-out;
}
body main .shop .card {
  width: 280px;
  margin: 20px;
}
body main .shop .cardbody {
  padding: 20px;
  color: white;
  border: 3px solid darkgrey;
  text-align: center;
  background-color: grey;
}
body main .shop .cardbody .cash {
  color: orange;
}
body main .shop .cardbody .cash:hover {
  color: white;
  font-size: 18px;
  border-bottom: solid white 2px;
}
body main .cisla {
  overflow: hidden;
  background-color: rgb(21, 44, 11);
  padding: 15px;
  border-top: solid 2px white;
  text-align: center;
}
body main .cisla button {
  padding: 6px;
  border: none;
  font-size: 15px;
  background-color: grey;
  cursor: pointer;
}
body main .cisla button:hover {
  background-color: white;
}
body footer {
  background-color: rgba(97, 76, 76, 0.6);
  height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: solid black 2px;
  align-items: center;
  position: static;
}
body footer .pata {
  padding-left: 50px;
}
body footer .nazov1 {
  text-align: center;
}
body footer .nazov1 a {
  color: black;
}
body footer .nazov1 a:hover {
  color: white;
  border-bottom: solid white 1px;
}
body footer .linky {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-self: right;
  width: -moz-fit-content;
  width: fit-content;
  grid-gap: 50px;
  padding-right: 50px;
}
body footer .linky img {
  border-radius: 10%;
  background-color: rgba(97, 76, 76, 0.9);
  max-width: 30px;
  height: auto;
}
body footer a:hover img {
  border-radius: 100%;
  background-color: rgba(20, 16, 16, 0.6);
}
@media (max-width: 650px) {
  body footer {
    grid-template-columns: auto 1fr;
  }
  body footer .nazov1 {
    display: none;
  }
}/*# sourceMappingURL=shop.css.map */