body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1b1b1b 40%, #222 100%); /* Soft gradient */
    color: #f0f0f0; /* Soft white text */
    font-family: 'Playfair Display', serif; /* Modern, artistic font */
    font-size: 3.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px; /* Artistic letter spacing */
}

.centered {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Soft shadow for depth */
    animation: fadeIn 3s ease-in-out; /* Fade-in effect */
}

/* Subtle fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}