#cta {
  background-position: center;
  background-size: cover;
  padding-bottom: 80px;
}

.cta-content {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.cta-content a {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color ease 150ms;
}

.cta-content a:hover {
  text-decoration-color: white;
}