:root {
  --VeryPaleBlue: hsl(225, 100%, 98%);
  --DesaturatedBlue: hsl(224, 23%, 55%);
  --DarkBlue: hsl(223, 47%, 23%);
  --PaleBlue: hsl(225, 100%, 94%);
  --BrightBlue: hsl(245, 75%, 52%);
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--PaleBlue);
  background-image: url(../images/pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Red Hat Display", sans-serif;
}

.container {
  width: 49vh;
  background-color: var(--VeryPaleBlue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px #bebebe;
}

.hero-img img {
  width: 100%;
}

.order-summary {
  padding: 35px;
  text-align: center;
}

.order-summary h1 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}

.order-summary p {
  font-size: 20px;
  color: var(--DesaturatedBlue);
  margin-bottom: 10px;
}

.order-review {
  border-radius: 10px;
  background-color: #f1f1f1;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.order-review img {
  width: 50px;
  height: 50px;
  margin-right: 17px;
}

.order-review .plan {
  margin-right: 50px;
  margin-top: 10px;
}

.order-review a {
  font-weight: 700;
  font-size: 14px;
  color: var(--BrightBlue);
}

.order-review a:hover {
  text-decoration: none;
  color: hsl(245, 74%, 62%);
  ;
}

.payment-btn button {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 6px 10px #b3b3b3;
  background-color: var(--BrightBlue);
  margin-bottom: 30px;
}

.payment-btn button:hover {
  background-color: hsl(245, 74%, 62%);
  cursor: pointer;
}

.payment-btn button a {
  text-decoration: none;
  color: var(--VeryPaleBlue);
  font-weight: 900;
  font-size: 14px;
}

.cancel-order a {
  text-decoration: none;
  color: var(--DesaturatedBlue);
  font-size: 14px;
  font-weight: 900;
  margin: 20px 0 40px 0;
}

.cancel-order a:hover {
  color: var(--DarkBlue);
}