/* Globale Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1B1D1E;
    color: whitesmoke;
}



/* Navbar-Stile */
.navbar {
    background-color: #3F1B61;
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Zentrales Bild-Stile */
.zentrales-bild {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 16px;
}

.zentrales-bild img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 200px rgba(128, 0, 128, 0.5);
    z-index: 1;
}

.zentrales-bild img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Bilder unter dem zentralen Bild-Stile */
.bilder-container {
    display: flex;
    justify-content: space-around;
    padding-top: 14px;
    padding-bottom: 30px;
}

.bilder-container img {
    max-width: 140px;
    margin: 10px;
    height:fit-content;
}

/* Horizontale Navigation */
.nav-table {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

li {
    flex: 1;
    display: inline-block; /* li nebeneinander anzeigen */
    list-style-type: none;
    padding-left: 60px;
}

a {
    color: #A07EBF;
    font-size: 17px;
    text-decoration: none;
}

.überschrift{
    font-size:xx-large;
    text-align: center;
    color: whitesmoke;
    padding: 16px;
}

.subtext {
    text-align: center;
    color: whitesmoke;
}

#countdown {
    padding: 30px;
    text-align: center;
}

.miniüberschrift {
    font-size:x-large;
    text-align: center;
    color: whitesmoke;
    padding: 16px;
}

.news {
    border: solid 2px #411D62;
    border-radius: 30px;
    width: 51%;
    padding:15px;
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 160px rgba(128, 0, 128, 0.5);
    z-index: 1;
}

.newsbox {
    display: flex;
    justify-content: center;
}

.info {
    border: solid 2px #411D62;
    border-radius: 30px;
    width: 20%;
    padding:15px;
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #3F1B61;
}

.info:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 160px rgba(128, 0, 128, 0.5);
    z-index: 1;
}

html {
    background-color: #1B1D1E;
}


@media (max-width: 600px){
    .newsbox {
        display: block;
        justify-content: center;
        
    }
    .news {
        width: 85%;
    }

    
}