/* Import custom fonts */
@font-face {
  font-family: 'BettinaSignature';
  src: url('fonts/bettina-signature.regular.ttf') format('truetype');
}

@font-face {
  font-family: 'LibreBaskerville';
  src: url('fonts/libre-baskerville.regular.ttf') format('truetype');
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(120deg, #CDC6B6, #253A4A, #c6b793);
  background-size: 200% 200%; /* Make it larger to allow for movement */
  animation: gradientAnimation 100s ease infinite; /* Animation for smooth gradient shift */
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  text-align: center;
  background-color: #fffdf2;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 85%;
}

h1.brand {
  font-family: 'BettinaSignature', serif; /* Apply Bettina Signature for brand name */
  font-size: 4rem;
  color: #0D1419;
  margin-bottom: -9%;
  letter-spacing: 2px;
}

p.slogan {
  font-family: 'LibreBaskerville', serif; /* Apply LibreBaskerville for slogan */
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #0D1419;
}

p.message {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
}

p.message a {
  color: #253A4A;
  text-decoration: none;
}

p.message a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #7f8c8d;
}

@media (max-width: 768px) {
  h1.brand {
    font-size: 3rem;
  }

  p.slogan {
    font-size: 1.2rem;
  }

  p.message {
    font-size: 1rem;
  }
}
