body {
  height: 111vh;
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 111vh;
  background: url(../images/creatis/pricing.png) top center / cover no-repeat;
  filter: blur(5px);
  opacity: 0.8;
  z-index: -1;
}

.pricing-container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plans-container {
  display: flex;
  width: 85vw;
  height: 50vh;
  justify-content: space-evenly;
}

.plan-window {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 20vw;
  height: 55vh;
  border: 1px solid #3fe6dd;
  border-radius: 25px;
  border-color: #3fe6dd;
}

.plan-window h1 {
  display: flex;
  font-size: 64px;
  font-style: italic;
}

.plan-window ol {
  margin: 0px 50px;
}

.plan-window p,
.plan-window ol li,
.plan-window ol li ul li {
  font-size: 22px;
  font-family: "Roboto Flex", sans-serif;
}

.plan-window .button-container {
  flex-grow: 1;
}

.button-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.button-container button {
  width: 300px;
  height: 50px;
  font-size: 22px;
  margin-bottom: 5vh;
  border-radius: 25px;
}

#free-window {
  background-image: linear-gradient(#3d726fed 80%, #2eb9b2ed 100%);
}

#starter-window {
  background-image: linear-gradient(#0d1f20ed 80%, #358386ed 100%);
}

#pro-window {
  background-image: linear-gradient(#2a202eed 80%, #876794ed 100%);
}

#free-button {
  background-color: #274846;
  color: #05fff2;
}

#starter-button {
  background-color: #0d1f20;
  color: #3fe6dd;
}

#pro-button {
  background-color: #2a202e;
  color: #dfa2f8;
}
