*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
html{
    height: 100%;
}
.wrapper{
    display: flex;
    justify-content: center;
}
body {
    height: 100%;
    background-color: black;
}

section {
    border: 5px solid #1f1e1e;
    border-radius: 20px;
    background-color: rgb(58, 0, 72);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1110px;
    margin: 15px auto;
    padding-top: 10px;
    color: white;
    flex-direction: column;
    align-items: center;

}
.Überschrift{
    color: darkturquoise;
    font-size: 150px;
}
.Galerie {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.Galerie img {
    padding-top: 50px
}
/* Nav leiste */
nav.nav{
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(42,42,42);
    color: white;
}
nav.nav a{
    text-decoration: none;
    text-align: center;
    font-size: 22px;
    font-family: sans-serif;
    border-bottom: 4px solid rgb(42, 42, 42);
}
nav ul li {
    height: 100%;
    padding: 30px;
    list-style-type: none;
    border-bottom: 4px solid rgb(42, 42, 42);
}
.nav-logo {
    padding-left: 10px;
}
nav ul{
    display: flex;
}
.toggle-button {
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 23px;
}
.toggle-button .bar {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 100%;
}
li a:hover{
    color: red;
}
li a{
    color: white;
}

@media(max-width:650px){
    .list-container{
        display: none;
        width: 100%;
    }
    .toggle-button{
        display: flex;
    }
    .list-container ul{
        flex-direction: column;
        width: 100%;
    }
    .list-container il{
        text-align: center;
    }

    .list-container.active{
        display: flex;
    }
    .nav-logo.off {
        display: none;
    }
    nav{
           flex-direction: column;
           align-items: flex-start;
    }
    .Überschrift {
        font-size: 70px;
    }
    section {
        width: 50vh;
    }
}

