* {
  padding: 0px;
  margin: 0px;
}
* header {
  display: grid;
  grid-template-columns: auto auto;
  border-bottom: solid 5px black;
  background-color: black;
  color: pink;
}
* header h1 {
  justify-self: right;
}
* header div {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-self: right;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
* header div a {
  color: palevioletred;
  text-decoration: none;
  align-self: center;
}
* main {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  background-image: url(../obrazkyweb/sweets.webp);
}
* main .kontajner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 50px;
}
* main .kontajner .karta {
  border: solid 5px black;
  padding: 10px;
  border-radius: 10px;
  display: grid;
  grid-template-rows: auto auto;
  background-color: pink;
  text-decoration: none;
  height: 500px;
}
* main .kontajner .karta:hover {
  transform: scale(0.9);
}
* main .kontajner .karta h2 {
  justify-self: center;
  text-decoration: none;
  color: black;
  align-self: end;
}
* main .kontajner .karta img {
  width: 400px;
  align-self: center;
}
* main .home {
  display: grid;
  grid-template-rows: auto auto;
  background-color: black;
}
* main .home h2 {
  text-align: center;
  color: pink;
}
* main .home h3 {
  color: pink;
}
* footer {
  background-color: black;
}
* footer div {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
* footer a {
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  justify-self: center;
}/*# sourceMappingURL=style.css.map */