* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: hsl(212, 45%, 89%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  background-color: white;
  text-align: center;
  max-width: 20%;
  padding: 15px 15px 30px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.2);
}
main .head {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.35rem;
  margin-bottom: 15px;
}
main .content {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 0.9rem;
}
main img {
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 15px;
}

@media (max-width: 990px) {
  main {
    max-width: 30%;
  }
  main .head {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.3rem;
  }
  main .content {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  main {
    max-width: 50%;
  }
  main .head {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.3rem;
  }
  main .content {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
  }
}
@media (max-width: 376px) {
  main {
    max-width: calc(100% - 60px);
  }
  main .head {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  main .content {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=index.css.map */