body {
  background-image: url("/img/bg.png");
  background-size: contain;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #09608d;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  padding: 0;
  margin: 0;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

section {
  z-index: 2;
}

.content-header {
  padding: 20px;
}

.content-header h2 {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-header p {
  font-size: 1.5rem;
  color: #db136c;
  margin-bottom: 40px;
}

.content-body {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.cta-link {
  display: block;
  background: linear-gradient(to right, green 0%, rgb(0, 57, 0) 100%);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s ease;
  text-align: center;
}

.cta-link:hover {
  transform: scale(1.05);
}

.footer-links {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  z-index: 99;
  padding: 10px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer-links ul li {
  margin: 0 10px;
}

.footer-links a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
    padding-top: 70px;
  }

  .footer-links {
    bottom: 10vh;
  }

  .cta-link {
    font-size: 18px;
    padding: 12px;
  }
}
