body {
    background: linear-gradient(-45deg, #ff0000, #ff0000, #e73c7e, #23a6d5, #0047ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;

    /* Flexbox to center title only */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
  
@keyframes gradient {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}

main {
    padding: 2rem;
}

.title-container {
    text-align: center;
    transform: translateY(150%);
}

.title-text h1 {
    margin: 0; /* Remove extra margin from the h1 */
    font-size: 5rem; /* Adjust as needed */
    color: #fff; /* Optional: Set your desired color */
}

.title-text p {
    margin-top: -1.25rem;
    font-size: 2.12rem; /* Adjust as needed */
    color: #fff; /* Optional: Set your desired color */
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Added this */
    margin-top: auto;
    padding-bottom: 20px;
    text-align: center; /* Added this */
}

.footer-links {
    font-size: 19px;
    font-weight: 500;
    color: white;
    text-align: center;
    white-space: nowrap; /* Prevents wrapping */
}

.footer-links a {
    color: white; /* White links */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.footer-links a:hover {
    color: #ff9900; /* Change color on hover */
    cursor: pointer; /* Show hand pointer on hover */
}

.footer-links a:visited {
    color: white; /* Ensures links remain white after being clicked */
}

/* Styles for smaller screens (mobile devices) */
@media screen and (max-width: 768px) {
    .title-container {
        transform: translateY(200%);
    }

    .title-text h1 {
        font-size: 1.8rem; /* Smaller font size for h1 */
    }

    .title-text p {
        margin-top: -0.25rem;
        font-size: 1.15rem;
    }

    .footer-container {
        transform: translateY(-100%);
    }

    .footer-links {
        font-size: 0.9rem;
    }
}


