body {
    background-color: #624f2d;
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 2em;
    color: #1c0e1a;
}

.container {
    margin-top: 20%;
}

h1 {
    font-size: 3em;
    animation: fadeIn 2s ease-in-out infinite alternate;
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}
