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

body {
  width: 100%;
  height: 100vh;
  background-color: hsl(204, 43%, 93%);
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  width: 605px;
  height: 448px;
  overflow: hidden;
  border-radius: 7px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.item-1 {
  grid-column: 1/-1;
  background-color: white;
  padding: 38px;
  font-family: "Karla", serif;
}
.item-1 .title {
  font-size: 22px;
  color: hsl(179, 62%, 43%);
}
.item-1 .subtitle {
  font-weight: bold;
  margin-top: 22px;
  color: hsl(71, 73%, 54%);
  font-weight: 700;
  font-size: 17px;
}
.item-1 .description {
  margin-top: 12px;
  font-size: 15px;
  color: hsl(218, 22%, 67%);
  line-height: 23px;
}

.item-2 {
  height: 243px;
  grid-column: 1/1;
  background-color: hsl(179, 62%, 43%);
  padding: 38px;
  font-family: "Karla", serif;
}
.item-2 .title {
  font-size: 17px;
  color: hsl(204, 43%, 93%);
}
.item-2 .price {
  margin-top: 17px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}
.item-2 .price .price-period {
  font-size: 16px;
  font-weight: lighter;
  opacity: 0.4;
  vertical-align: middle;
}
.item-2 .description {
  margin-top: 4px;
  color: white;
  font-size: 15px;
  opacity: 0.7;
}
.item-2 .button {
  font-family: "Karla", serif;
  font-weight: bold;
  width: 100%;
  height: 47px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: hsl(71, 73%, 54%);
  color: white;
  margin-top: 30px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.item-2 .button:active {
  transform: translateY(2px);
}

.item-3 {
  height: 243px;
  background-color: hsla(179, 62%, 43%, 0.5);
  padding: 38px;
}
.item-3 .title {
  font-family: "Karla", serif;
  font-size: 17px;
  color: hsl(204, 43%, 93%);
}
.item-3 .description {
  width: 171px;
  font-size: 15px;
  color: white;
  opacity: 0.7;
  margin-top: 17px;
  line-height: 19px;
}

@media (max-width: 578px) {
  .item-1,
  .item-2,
  .item-3 {
    padding: 28px;
  }
}
@media (max-width: 375px) {
  main {
    width: 350px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .item-2 {
    height: auto;
  }
  .item-3 {
    height: auto;
  }
  .item-3 .description {
    width: 180px;
  }
}
@media (max-height: 560px) {
  body {
    height: 150vh;
  }
}

/*# sourceMappingURL=style.css.map */
