body {
  padding: 0;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background-image: url("../assets/images/background-pattern-mobile.svg");
  background-color: hsl(275, 100%, 97%);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  margin: auto 25px;
  padding: 25px;
  max-width: 520px;
  background-color: hsl(0, 100%, 100%);
  border-radius: 8px;
}
main > header {
  display: flex;
  column-gap: 25px;
}
main > header img {
  width: 23px;
}
main > header h1 {
  margin: 0;
  color: hsl(292, 42%, 14%);
}
main section {
  display: flex;
  flex-direction: column;
  margin-block: 23px;
}
main section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
main section header h2 {
  margin: 0;
  font-weight: 600;
  color: hsl(292, 42%, 14%);
  font-size: 1em;
}
main section header h2:hover {
  cursor: pointer;
  color: hsl(281, 83%, 54%);
}
main section p {
  color: hsl(292, 16%, 49%);
  font-size: 0.87em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  margin-top: 30px;
}
main > section:last-child {
  margin-bottom: 0;
}
main hr {
  border: none;
  height: 1px;
  background-color: hsl(275, 100%, 97%);
  margin-right: 10px;
}

.hidden {
  display: none;
}

@media screen and (min-width: 900px) {
  body {
    background-image: url("../assets/images/background-pattern-desktop.svg");
  }
  main {
    padding: 30px;
    border-radius: 15px;
  }
  main header img {
    width: 33px;
  }
  main header h1 {
    font-size: 3em;
  }
  main section header h2 {
    font-size: 1.13em;
  }
  main section p {
    font-size: 1em;
  }
}/*# sourceMappingURL=styles.css.map */