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

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

.container {
  max-width: 360px;
  background-color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 30px;
}
.illustration img {
  width: 360px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.text-content {
  margin-bottom: 25px;
}

.title {
  font-weight: 900;
  margin: 25px 0 25px 0;
}
.subtitle {
  margin: 0 45px 25px 45px;
  font-size: 16px;
}
.plan-box {
  background-color: hsl(225, 100%, 98%);
  margin: 0 35px 0 35px;
  padding: 15px 20px 15px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-box a {
  color: hsl(223, 89%, 56%);
  text-decoration: underline;
}
.plan-box a:hover {
  text-decoration: underline;
  opacity: 70%;
  text-decoration: none;
}

.plan__and__img {
  display: flex;
  gap: 20px;
}
.plan__and__img div {
  text-align: left;
}
.proceed-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(245, 75%, 52%);
  color: white;
  text-decoration: none;
  height: 44px;
  margin: 25px 35px 0 35px;
  border-radius: 10px;
}

.proceed-button:hover {
  opacity: 70%;
}

.cancel-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsla(245, 75%, 52%, 0);
  text-decoration: none;
  height: 44px;
  margin: 0 35px 0 35px;
  border-radius: 10px;
}
.cancel-button:hover {
  font-weight: bold;
}
/* .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  background-color: white;
} */
