.content {
  min-width: fit-content;
  max-width: fit-content;
}

.animations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.animations > section {
  display: flex;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.animations > section:nth-of-type(odd) {
  flex-wrap: wrap-reverse;
}

.animations > section:nth-of-type(even) {
  flex-wrap: wrap;
}

.animation,
.description {
  padding: 1em;
  flex: 1;
}


p {
  line-height: 1.6;
}

.description > h3 {
  font-size: 50px;
  font-weight: 700;
  color: black;
  margin: 0.3em 0;
}

.description > p {
  font-size: large;
  color: gray;
  text-wrap: pretty;
}

.replay {
  font-size: 20px;
  cursor: pointer;
  color: grey;
  margin-bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.replay.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.animations .cta-button {
  display: block;
  margin-top: 1em;
}

@media (width < 600px) {
  .animations {
    width: 100%;
  }

  .animations > section {
    width: 100vw;
  }

  .animation {
    padding: 0;
  }
}

a.pricing-cta {
  padding: 0.5em;
  border: none;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-top: 0.4em;
}

.hero-content {
  background-color: #ffe4c7;
  background-image: url("/static/images/window.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2em;
  text-align: center;
  display: block;
  width: 100%;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5em;
}


.hero-content .cta-button {
  padding: 0.8em 1.5em;
  border: 2px solid white;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: 700;
  text-decoration: none;
}

.hero-content .cta-button:hover {
  padding: 0.9em 1.6em;
  box-shadow: 5px 5px 10px #ffffff4d;
}