*, *::before, *::after {
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  margin: 0;
  padding: 0;
}

:root {
  --prim-pale-blue: hsl(225, 100%, 94%);
  --prim-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%);
}

html {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
}

body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='437' %3E%3Cpath fill='%23D6E1FF' fill-rule='evenodd' d='M0 349.974c218.558 116.035 460.05 116.035 724.475 0s502.933-116.035 715.525 0V0H0v349.974z'/%3E%3C/svg%3E");
  background-color: hsl(225, 100%, 94%);
  background-size:contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

h1 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 1rem 0;
  color:var(--neutral-dark-blue)
}

h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-dark-blue);
}

p {
  color: var(--neutral-desaturated-blue);
  line-height: 1.5;
  font-weight: 500;
}

.container {
  width: 365px;
  background-color: white;
  text-align: center;
  border-radius: 1rem;
}

.order-img {
  height: 170px;
  width: 100%;
  background-color: var(--neutral-dark-blue);
  color:white;
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
}

.order {
  padding: 1.5rem;
}

.order-text p {
  margin: 1.5rem 1.5rem;
}

.order-plan {
  display: flex;
  align-items: center;
  margin: 2.5rem 1.5rem;
}

.plan-price {
  margin-left: 1.5rem;
}

.change-plan {
  margin-left: auto;
  color: var(--prim-bright-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.change-plan:hover {
  color: var(--neutral-desaturated-blue);
}

.payment-button {
  width:100%;
  padding: 1rem 0;
  border-radius: 0.6rem;
  margin: 1rem 0;
  background-color: var(--prim-bright-blue);
  color: white;
  font-weight: 900;
  box-shadow: 0 25px 13px var(--prim-pale-blue);
}

.payment-button:hover {
  background-color: var(--neutral-desaturated-blue);
}

.cancel {
  width:100%;
  font-weight: 700;
  color: var(--neutral-desaturated-blue);
  padding: 0.6rem 0;
  margin-bottom: 0.5rem ;
}

