.contactInfo {
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    position: relative;
    left: -200px; /* Startposition: außerhalb des Bildschirms links */
    animation: backInLeft 4s forwards;
        }

     @keyframes backInLeft {
         0% {
                left: -100%; /* Start: ganz rechts außerhalb */
                opacity: 0;
            }
            100% {
                left: 0; /* Mitte: im Bildschirm */
                opacity: 1;
            }
          
        
        }

.openingHours {
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {
    .contactInfo {
        margin: 0;
        width: 200px;
    }

    .contactInfo h2 {
        font-size: 1.5em;
        text-align: center;
    }

    .contactInfo p {
        font-size: 1rem;
    }

    .openingHours {
        padding: 10px;
        margin: 0;
    }

    .contactInfo p:last-of-type {
  font-size: 0.8rem;

}
    
}