@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 main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: white;
  margin: 30px;
  font-size: 25px;
  border: solid black 1px;
}
body main .infotabulka {
  text-align: center;
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 15px;
  border-bottom: solid blue 1px;
}
body main .infotabulka a {
  border-right: solid blue 1px;
  border-left: solid blue 1px;
}
body main .infotabulka a:hover {
  color: blue;
  font-size: 25.5px;
}
body main .jadro {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}
body main .jadro a {
  color: red;
}
body main .jadro a:hover {
  color: blue;
  font-size: 15.5px;
}
body main .zaver {
  display: grid;
  grid-template-columns: auto auto;
  text-align: left;
  border-top: solid blue 1px;
  padding: 15px;
}
body main .zaver a {
  border-right: solid blue 1px;
  margin-left: 5px;
}
body main .zaver a:hover {
  color: blue;
  font-size: 25.5px;
}
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=kosik.css.map */