html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0a0a;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.btn-primary {
  background: linear-gradient(145deg, rgba(58,94,141,0.3), rgba(58,94,141,0.1));
  color: #fff;
  border: 1px solid rgba(58,94,141,0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
              0 4px 12px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: linear-gradient(145deg, rgba(58,94,141,0.5), rgba(58,94,141,0.2));
  border-color: rgba(58,94,141,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4),
              0 6px 18px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}


.btn {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),  0 4px 12px rgba(0,0,0,0.3);
}

.btn:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border-color: rgba(255,255,255,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 6px 18px rgba(0,0,0,0.4);
  transform: translateY(-2px);}

.text {
  text-align: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 70%, rgb(10, 10, 10) 100%),
    url('/src/assets/images/footer.png') no-repeat center top;
  background-size: cover;
  z-index: 0;
}


#bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
}

.text h1 {
  font-size: 9rem;
  font-weight: 1000;
  margin-bottom: 1rem;
  margin-top: 12rem;
  color: rgb(255, 255, 255);
}


.text p {
  color: #a3a3a3;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


