html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  color: white;
  background: url('../img/ebucket.webp') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  transition: background-size 1s ease;
}

body:hover {
  background-size: 105%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1, p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 1s ease-out forwards;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 48px;
  font-weight: bold;
  text-shadow:
    0 0 10px rgba(255,255,255,0.6),
    0 0 20px rgba(255,255,255,0.4),
    0 0 30px rgba(255,255,255,0.2);
  animation-delay: 0.2s;
}

p {
  font-size: 24px;
  margin-top: 20px;
  animation-delay: 0.6s;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  margin-top: 40px;
  padding: 12px 24px;
  background: #ffa500;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.cta:hover {
  background: white;
  color: black;
}

footer {
  padding: 20px;
  font-size: 14px;
  opacity: 0.8;
  color: white;
  text-align: center;
}
.email-link {
	background: #1111116e;
    padding: 8px 10px;
    border-radius: 10px;
}
.email-link a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 { font-size: 33px; }
  p { font-size: 18px; }
  .cta { font-size: 16px; padding: 10px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  p { font-size: 16px; }
  .cta { font-size: 14px; padding: 8px 16px; }
}