* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Red Hat Display', sans-serif;
}

body {
  background-image: url(./images/pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #E0E8FF;
  ;
}

.order-summary-card-container {
  width: 450px;
  height: 697px;
  margin: 7rem auto;

}

.order-summary-img {
  width: 450px;
  height: 220px;
  background-image: url(./images/illustration-hero.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px 20px 0px 0px;
}

.summary-info-container {
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
  padding: 2rem;
}

.summary-info-container h3 {
  color: #1f2e55;
  font-size: 28px;
  font-weight: 900;
  padding-bottom: 1rem;
}

.summary-info-container p {
  color: #717FA6;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.annual-plan-container {
  border-radius: 11px;
  background: #f7f9ff;
  width: 354px;
  height: 100px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.music-icon-container {
  padding-right: 1rem;
}

.annual-plan-price {
  padding-right: 5.5rem;
}

.annual-plan-price h4 {
  color: #1f2e55;
  font-size: 16px;
  font-weight: 900;
}

.annual-plan-price .price {
  color: #717FA6;
  font-size: 16px;
  font-weight: 500;
}

.change-link a {
  color: #382ae1;
  font-size: 14px;
  font-weight: 700;
  transition: all .1s ease-in;
}

.change-link a:hover {
  color: #766cf1;
  text-decoration: none;
}

.payment-btn {
  width: 354px;
  height: 50px;
  border-radius: 11px;
  border: none;
  background: #382ae1;
  color: #fff;
  box-shadow: 0px 20px 20px 0px rgba(56, 42, 225, 0.19);
  font-size: 15px;
  font-weight: 900;
  margin: 2rem 0rem;
  cursor: pointer;
  transition: background .2s ease-in;
}

.payment-btn:hover {
  background: #766cf1;
}

.cancel-order-link a {
  color: #717FA6;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: color .2s ease-in;
}

.cancel-order-link a:hover {
  color: #1f2e55
}

/* 





Media Queries




*/

@media screen and (max-width: 480px) {

  .order-summary-card-container {
    width: 90%;
    margin-top: 2rem;
  }

  .order-summary-img {
    width: 100%;
    background-size: cover;
  }

  .annual-plan-container {
    width: 100%;
  }

  .summary-info-container p {
    width: 100%;
  }

  .annual-plan-price {
    padding-right: 3rem;
  }

  .annual-plan-price h4 {
    font-size: 14px;
  }

  .annual-plan-price .price {
    font-size: 14px;
  }

  .payment-btn {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .annual-plan-price h4 {
    font-size: 11px;
  }

  .annual-plan-price .price {
    font-size: 11px;
  }
}

@media screen and (max-width: 320px) {
  .annual-plan-price {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 280px) {

  .music-icon-container img {
    width: 30px;
  }

  .annual-plan-price {
    padding-right: 1rem;
  }

  .change-link a {
    font-size: 11px;
  }

}