@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Red Hat Display", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: hsl(225, 100%, 94%) url("../images/pattern-background-mobile.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding: 2rem;
}
@media (min-width: 64rem) {
  body {
    background: hsl(225, 100%, 94%) url("../images/pattern-background-desktop.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
  }
}

main {
  background-color: white;
  border-radius: 1.5rem;
  margin: auto;
  max-width: 28rem;
}

h1 {
  font-size: 1.7rem;
  font-weight: 900;
  margin: 1rem 0;
  color: hsl(223, 47%, 23%);
}

h2 {
  font-size: 1.2rem;
  font-weight: 800;
}

p {
  color: hsl(224, 23%, 55%);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
}

button {
  background-color: hsl(245, 75%, 52%);
  border: unset;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: white;
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Red Hat Display";
  margin: 2rem 0;
  box-shadow: 0 8px 20px 0 hsla(245, 75%, 52%, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
button:hover, button:focus, button:active {
  background-color: hsl(245, 83%, 68%);
}

footer {
  margin-top: auto;
  padding: 1rem;
}

.hero {
  max-width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
}

.content {
  padding: 2rem;
  text-align: center;
}

.plan {
  background-color: hsl(225, 100%, 98%);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0;
}
.plan p {
  margin: 0;
}
.plan a {
  color: hsl(245, 75%, 52%);
  margin-left: auto;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.plan a:hover, .plan a:focus, .plan a:active {
  color: hsl(245, 83%, 68%);
}

.cancel {
  text-decoration: none;
  color: hsl(224, 23%, 55%);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.cancel:hover, .cancel:focus, .cancel:active {
  color: hsl(223, 47%, 23%);
}/*# sourceMappingURL=styles.css.map */