/* --- Basic Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Prevents scrollbars from the large gradient */
}

/* --- Animated Gradient Background --- */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    
    /* The Gradient */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    
    /* Make the gradient huge so the animation is smooth */
    background-size: 400% 400%;
    
    /* The Animation */
    animation: gradientShift 15s ease infinite;
}

/* --- Keyframes for the background animation --- */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* --- Content Styling --- */
.content-container {
    padding: 20px;
    /* Fade-in animation for the text */
    animation: fadeInText 2s ease-in-out;
}

h2 {
    font-size: 1.5rem;
    font-weight: 300; /* Lighter font weight */
    text-transform: uppercase;
    letter-spacing: 0.2em; /* Wide spacing for style */
    margin-bottom: 1rem;
    opacity: 0.9;
}

h1 {
    font-size: 5rem;
    font-weight: 700; /* Bold font weight */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.1;
    /* Crucial for readability on a colorful background */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

/* --- Keyframes for the text fade-in animation --- */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
    h2 {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
}