body, html {
    height: 100%;
    margin: 0;
}

.full-page {
    height: 100vh;
    background: linear-gradient(45deg, #6e48aa, #9d50bb, #809EAD, #73CEF5);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
}

.lead {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 4rem;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 10px 0;
}

.text-muted {
    color: white !important;
}

.pre-footer {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    margin-top: 10rem; 
    padding: 1rem 6rem;
    border-radius: 5px;
}

.link-text {
    color: #CFFFFD;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
}

.link-text:hover {
    text-decoration: underline;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
