/* style.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Expansive sky aesthetic for the concept of freedom */
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

h1 {
    font-size: 15vw;
    color: rgba(255, 255, 255, 0.95);
    text-transform: lowercase;
    letter-spacing: 2vw;
    margin: 0;
    font-weight: 300;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    user-select: none;
    opacity: 0;
    animation: fadeFloat 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    will-change: transform;
}

@keyframes fadeFloat {
    0% {
        opacity: 0;
        transform: translateY(5vh) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}