body {
    background: #1a1a1a; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace; 
}

.the-end {
    font-size: 8rem; 
    color: #f5d742; 
    text-shadow: 
        3px 3px 0 #c47f00, 
        6px 6px 0 #8c5a00; 
    letter-spacing: 1rem; 
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}
