.cta {
  background-image: url("/imgs/snowy-cta.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding-bottom: var(--size-3xl);
}

.cta__container-title {
  text-align: center;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  color: var(--white);
  font-size: var(--size-6xl);
  text-transform: uppercase;
}

.cta__container-description {
  display: flex;
  justify-self: center;
  max-width: 60ch;
  font-size: var(--size-2xl);
  color: var(--white-hover);
  margin-bottom: 25px;
  text-align: center;
}

.cta__container-btn {
  font-size: var(--size-2xl);
  font-weight: 600;
}

@media (max-width: 640px) {
  .cta__container-title {
    font-size: var(--size-3xl);
  }

  .cta__container-description {
    font-size: var(--size-xl);
  }

  .cta__container-btn {
    font-size: var(--size-lg);
    font-weight: 500;
  }
}
