html, body {
    overflow-y: auto;
    margin: 0;
    padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  overflow-y: visible;
}
h1 {
  font-size: 70px;
  color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 10vw;
}

.logo a {
  color: #fff;
  text-decoration: none;
}

.nav-actions {
  margin-right: 10vw;
}
.contact-link {
  padding: 10px 20px;
  background-color: #141219;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95em;
  outline: 2px solid #7286FF;
}

.contact-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.centered {
  margin-top: 35vh;
}

.tagline {
  background: linear-gradient(to right, #7186FF, #FE7587);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: bold;
  margin: 20px 0;
}


.cta:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.center-button {
  display: inline-block;
  margin-top: 15px;
}

footer {
  color: #D7CDCD;
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  flex-wrap: wrap;
  position: absolute;
  bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 0.9em;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 10px 5vw;
    position: static;
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }
}




@media (max-width: 500px) {
    .nav-actions {
        margin-right: 3vw;
    }
    .logo {
        margin-left: 3vw;
    }
    h1 {
      font-size: 48px;
    }
    .tagline {
      font-size: 32px;
    }
}
