body {
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    position: relative;
}


h1 {
    algin: center;
    font-size: 4em;
    color: #400410;
    animation: pulse 2s infinite alternate; /* Animation hinzufügen */
}
@keyframes pulse { /* Keyframes für die Animation definieren */
    0% {
        opacity: 0.05;
    }
    100% {
        opacity: 1;
    }
} /* After you read this css file, I would like to read from you. how are you? everything ok with you? */