@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap");
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primary-pale-blue: hsl(225, 100%, 94%);
  --primary-bright-blue: hsl(245, 75%, 52%);
  --neutral-very-pale-blue: hsl(225, 100%, 98%);
  --neutral-desaturated-blue: hsl(224, 23%, 55%);
  --neutral-dark-blue: hsl(223, 47%, 23%);
}

body {
  margin: 0;
  padding: 0;
  background: var(--neutral-very-pale-blue) url(images/pattern-background-mobile.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  color: var(--neutral-dark-blue);
}

@media (min-width: 720px) {
  body {
    background-image: url("images/pattern-background-desktop.svg");
  }
}

img {
  max-width: 100%;
  border-radius: 1.25em 1.25em 0 0;
}

.container {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
}

.card {
  width: 88%;
  max-width: 350px;
  background: white;
  border-radius: 1.25em;
  text-align: center;
}

.card .content {
  padding: 1.865em;
}

.card .content h1 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 0;
}

.card .content p {
  color: var(--neutral-desaturated-blue);
  line-height: 1.5em;
}

.card .content .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--neutral-very-pale-blue);
  margin: 1.75em 0;
  padding: 1.5em 1em;
  border-radius: .75em;
}

.card .content .price h2 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
}

.card .content .price p {
  margin: 0;
}

.card .content .price a {
  font-weight: 700;
  color: var(--primary-bright-blue);
  margin-left: 1.25em;
}

.card .content button {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.card .content .proceed-payment {
  background: var(--primary-bright-blue);
  color: white;
  padding: 1em 0;
  margin-bottom: 1em;
  border-radius: .75em;
  -webkit-box-shadow: 0 0.5em 1.5em #6b66a3;
          box-shadow: 0 0.5em 1.5em #6b66a3;
}

.card .content .proceed-payment:hover {
  -webkit-box-shadow: 0 0.5em 1.5em #5c54b6;
          box-shadow: 0 0.5em 1.5em #5c54b6;
}

.card .content .cancel-order {
  color: var(--neutral-desaturated-blue);
  background: none;
}

.card .content .cancel-order:hover {
  color: #596ea6;
}
/*# sourceMappingURL=main.css.map */