* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
.background {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0, 0, 0, 0.646)),url(pexels-photo-1174732.jpeg);
    background-size: cover;
    background-position: center;
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .header {
    position: absolute;
    top: 0;
    width: 99.2rem;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
  }

  .navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
  }

  .navbar a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
  }

  .navbar a:hover::before {
    width: 100%;
  }


  .logo {
    height: 50px;
  }

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    color: #fff;
    animation:forwards 1.5s ease;
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
}
.content p {
    font-size: large;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.message h1 {
    text-align: center;
    margin-top: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 40px;
}
.message h3 {
    text-align: center;
    margin-top: 13px;
    font-family: Verdana, Geneva, Tahoma, sans-serif ;
}
.p1 {
    text-align: center;
    padding-top: 50px;
}
.p2 {
    text-align: center;
    margin-top: 17px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
}
.p3 {
    text-align: center;
    margin-top: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    
}

.gradient-box {
    background: linear-gradient(to right, rgba(211, 211, 211, 0.5), rgba(169, 169, 169, 0.5)); /* Transparent gray gradient */
    padding: 40px;
    border-radius: 8px; 
    width: 80%; 
    max-width: 800px;
    margin: 20px auto; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;      
    text-align: center;       
    height: 400px;            
}

.content {
    padding: 10px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

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

.footer p {
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-links {
        margin-top: 20px;
    }
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}
