body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(-45deg, #430b5d, #89039b, #b90dc8, #431ca0);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    justify-content: center;
    align-items: center;
    position: relative;
}
@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.container {
    max-width: 800px; 
    width: 80%; 
    margin: 40px auto; 
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: "Roboto Slab", serif;
}

.container p{
    font-size: larger;
    color: #000;
    font-weight: 450;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 5px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #db490016;
    transition: border-color 0.3s;
}

h1 {
    font-size: 3.5em;
    font-family: "Satisfy", cursive;
    color: #F86624;
}

p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}


label {
    margin-top: 10px;
    display: block;
    font-weight: 700;
    text-align: left;
    font-size: 18px;
}

button {
    width: 100%; 
    padding: 10px; 
    background-color: #F86624; 
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.2em; 
    font-weight: bolder;
    transition: background-color 0.5s ease, color 0.2s ease;
    margin-top: 10px; 
}

button:hover {
    background-color: #c33e00; 
    color: whitesmoke;
}

/* Media query for responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}


#navbar {
    margin-bottom: 0px;
    z-index: 3; 
}

.navbar {
    background-color: rgba(0, 0, 0, 0.511);
    border: none; 
    font-family: "Roboto Slab", serif;
    
}

.navbar-nav .nav-link {
    font-size: 20px;
    color: #ffffff; 
    font-family: "Roboto Slab", serif;
}

#navbar a:hover {
    color: #e95009; 
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#footer {
    margin-top: 30px;
    color: white;
    padding: 20px 0;
}

#footer > .container {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 8px;
}

/* Footer Links Styling */
#footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}


/* Footer Text Alignment */
#footer p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #footer > .container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    #footer p {
        font-size: 0.8rem;
    }
}

.copyright {
    text-align: center;
}

.copyright p{
    color: #d8cece;
}

#footer > .container{
    background-color: transparent ;
}


