.mainInfo {
    display: flex;
    flex-direction: row-reverse;
    padding: 30px 50px;
    color: white;
    width: 70vw;
    margin: auto;
    background-color: purple;
    border-radius: 15px;
    transform: translateY(100%);
    animation: slideInUp 5.5s ease-out forwards;
        }

        @keyframes slideInUp {
            to {

                transform: translateY(0);
            }
        }
.basicInfo {
    flex: 1;
    padding: 20px;
    border-radius: 15px;
}

.basicInfo:hover {
    background-color: orange; /* Dunkleres Lila für den Hover-Effekt */
    transform: translateY(-5px); /* Leichtes Anheben bei Hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Sanfte Übergänge */
}

.basicEventInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-right: 20px;
    justify-content: center;
}

.basicEventInfo:hover {
    background-color: orange; /* Dunkleres Lila für den Hover-Effekt */
    transform: translateY(-5px); /* Leichtes Anheben bei Hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Sanfte Übergänge */
}

.basicEventInfo h4 {
    color: white;
   font-size: 2em;
}

.basicEventInfo p {
    color: white;
    font-size: 1.2em;
    line-height: 1.5;
}

.basicEventInfo li {
    color: white;
    font-size: 1.1em;
  list-style-type: none;
  padding-left: 0; /* Optional: Entfernt den Standard-Einrückungsabstand */
  margin-left: 0; /* Optional: Entfernt den Standard-Linken Rand */
}



@media screen and (max-width: 768px) {
    .mainInfo {
        flex-direction: column;
        width: 90vw;
        padding: 20px;
    }

    .basicInfo, .basicEventInfo {
        padding: 10px;
    }
}