html {
  background-color: hsl(225, 100%, 94%);
  height: 100vh;
}

body {
  background-image: url(images/pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#container {
  width: 350px;
  height: 560px;
  background-color: whitesmoke;
  border-radius: 20px;
  box-shadow:
    rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-family: Red Hat Display;
}

.avatar {
  border-radius: 20px 20px 0px 0px;
}

#information-container {
  margin: 25px;
  text-align: center;
}

#plan-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 15px;
  background-color: hsl(224deg 88.24% 93.33% / 36%);
  flex-direction: row;
  height: 70px;
  border-radius: 15px;
}

h2 {
  font-weight: 900;
}

p {
  font-size: 14px;
  margin: 15px 20px 20px 20px;
  font-weight: 500;
  color: hsl(224, 23%, 55%);
}

#icon {
  height: 45px;
  margin-left: 20px;
  margin-right: 15px;

}

#payment {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

h4 {
  font-size: 14px;
}

span {
  color: #9290af;
}

.change-button {
  color: #382ae1;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  text-align: right;
  margin-right: 15px;
}

.payment-button {
  border-style: hidden;
  background-color: #382ae1;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
  color: aliceblue;
  text-decoration: none;
  border-radius: 10px;
  box-shadow:
    rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.payment-button:hover {
  background-color: #756bef;

}

.cancel-button {
  margin-top: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: hsl(227.27deg 13.04% 49.61%);
  font-weight: 900;
}