@font-face{
    font-family: OpenSans;
    src: url("../res/font/OpenSans-Light.ttf");
}

body{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100vw;
    background-color: white;
}

#rahmen{
    width: 100vw;
    height: auto;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
}

#rahmen-unten{
    width: 100vw;
    height: auto;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-color: white;
}

#socials{
    display: flex;
    border-block: 1px solid #bbb;
    width: 100%;
    justify-content: left;
    overflow: hidden;
    padding: 0px 4%;
}   

#socials > a{
    width: 10%;
    margin-block: 10px;
    margin-inline: 2%;
    
}

main{
    width: 75vw;
    height: 100%;
    background-color: white;
}

iframe{
    padding: 0;
    margin: 0;
}

#menu{
    display: grid;
    margin-top: -3.1%;
    width: 100%;
}

.el{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.Reiter{
    margin: 0;
    padding: 1px 5%;
    border-width: 0px;
    background-color: transparent;
    font-size: 10vw;
    font-family: OpenSans;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #bbb;
    width: 100%;
    color: black;
}

.Reiter:hover{
    color: #ce0000;
}

a{
    text-decoration: none;
    cursor: pointer;
}

/*Mobile Menu Toggle*/


#mobile-menu-toggle-div{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid black;
    border-radius: 15px;
    z-index: 3;
}

#mobile-menu-toggle-div > div{
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: gray;
    border-radius: 5px;
    z-index: 3;
}

#b1{
    transform: rotate(45deg);
}

#b2{
    transform: rotate(-45deg);
}

@media only screen and (max-width: 700px) {
    .Reiter{
        font-size: 15vw;
    }
}