:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-color: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

main {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    /* Initial state for animation */
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}