*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    background: radial-gradient(white, rgb(236,236,236));
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial;
}
nav{
    width: 100%;
    min-height: 85px;
    background-color: white;
    box-shadow: 2px 2px 4px rgb(0,0,0,0.11);
    display:flex;
    justify-content: space-between;
    align-items: center;
}
nav ul{
    float: left;
    display:flex;
}
nav ul li{
    float: left;
    list-style: none;
    position: relative;
    height:100%;
    list-style-type: none;
}
nav ul li a{
    font-family: Arial;
    color: #272727;
    font-size:24px;
    text-decoration: none;
    padding: 28px;
    display: block;
}
nav ul li a:hover{
    background-color:#ebebeb;
}
nav ul li ul{
    display:none;
    position: absolute;
    background-color:#338585;
    padding: 7px;
    border-radius: 0px 0px 12px 12px;
}
nav ul li:hover ul{
    display: block;
}
nav ul li ul li a{
   color: white; 
   padding: 16px 20px;
   border-radius: 10px;
}
nav ul li ul li a:hover{
    background-color:#296b6b;
}
h1{
    text-align: center;
    margin-top: 2.5%;
    font-size: 50px;
}
p{
    font-size:25px;
    margin-top: 4.5%;
}
.TextTasten{
    font-size: 25px;
    margin-top: 3.5%;
    margin-left: 2.5%;
}
.HomeText{
    font-size: 25px;
    margin-top: 3.3%;
    margin-left: 2.5%;
}
.Tabelle{
    margin-left: 15%;
    margin-top: 3.5%;
}
.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: #000000;
    border-radius: 100px;
}


@media(max-width:1180px){
    .list-container{
        display:none;
        width: 100%;
    }
    .toggle-button{
        display: flex;
    }
    nav{
        flex-direction: column;
        align-items: flex-start;
    }
    .list-container ul{
        flex-direction: column;
        width: 100%;
    }
    .list-container{
        text-align: center;
    }
    .list-container.active{
        display: flex;
    }
}
.NavEbay{
    margin-top: 40px;
    margin-left: 80px;
    background-color: #296b6b;
    width:220px;
    height:460px;
    border-radius: 10px;

}
.NavEbay ul li{
    font-size: 22px;
    list-style: none;
    text-align: left;
    margin-left: 10px;
    margin-top: 8px;
}
.NavEbay h2{
    text-align: center;
    margin-top: 5px;
}
.NavEbay ul{
    margin-top: 15px;
}
.NavEbay ul li a{
    color:#000828;
    text-decoration:none;
}
.NavEbay ul li ul li{
    list-style: disc;
    margin-left: 10px;
    font-size: 20px;
}