* {
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2%;
  padding-top: 2%;
  padding-bottom: 3%;
}

.bg {
  position: fixed;
  z-index: -1;
  top: 15%;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: url(/img/bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.postolino {
  height: 20%;
  max-width: 60%;
  min-height: 10vh;
}
@media (max-width: 800px) {
  .postolino {
    height: 15%;
  }
}
.postolino img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.smiley {
  height: 25%;
  min-height: 10vh;
}
@media (max-width: 800px) {
  .smiley {
    height: 15%;
  }
}
.smiley img {
  height: 100%;
  width: auto;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 50px white;
}

ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  flex: 1;
}
@media (max-width: 800px) {
  ul {
    flex-direction: column;
  }
}
ul li {
  margin: 0px;
  padding: 0px;
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) and (max-aspect-ratio: 1/1) {
  ul li {
    width: 90%;
    height: 30%;
  }
}
ul li a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul li a img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1) translateX(-50%) translateY(-50%);
  transform-origin: 0% 0%;
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
}
ul li a img:hover {
  transform: scale(1.1) translateX(-50%) translateY(-50%);
}
@media (max-width: 800px) and (max-aspect-ratio: 1/1) {
  ul li a img {
    height: 100%;
    width: auto;
  }
}
ul li:nth-child(3) a img {
  background-size: 120% auto;
}/*# sourceMappingURL=styles.css.map */