/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full page view */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #76F2FF, #3fb2cb, #76F2FF);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

/* Centering the content */
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
}

/* Text styling */
.text-container h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #800020;
    text-transform: lowercase;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.text-container p {
    font-size: 3rem;
    color: #800020;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animation for gradient background */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
