body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #333333;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add hover effect */
h1:hover {
    transition: all 0.3s ease;
    color: #666;
    transform: scale(1.05);
}

.prefix {
    color: #666;
    font-weight: 400;
} 