*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.container{
    height: 100vh;
    height: -webkit-fill-available;
    width: calc(100vh * 24 / 39);
    width: calc(-webkit-fill-available * 24 / 39);
    background-image: url("../pictures/coenonbass.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-color: black;
    position: absolute;
}

.header{
    height: 20%;
    width: 100%;
}

.header *{
    width: 100%;
    height: 50%;
}

.title{
    color: var(--title-color);
    text-align: center;
    cursor: pointer;
}
.menuButton:first-child{
    margin-left: 0%;
}
.menuButton{
    width: max-content;
    height: 100%;
    float: left;
    color: var(--menuButton-color);
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}
.menuButton:hover{
    color: var(--menuButton-color-highlight);
    cursor: pointer;
}

.menu{
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: space-around;
}

.content{
    height: 80%;
    width: 100%;
}
#ContentIframe{
    width: 100%;
    height: 100%;
}

.selectedButton{
    color: var(--menuButton-color-selected);
}

@media (min-aspect-ratio:24/39){
    .container{
        height: 100vh;
        height: -webkit-fill-available;
        width: calc(100vh * 24 / 39);
        width: calc(-webkit-fill-available * 24 / 39);
        left: 50%;
        transform: translateX(-50%);
    }
    .title{
        font-size: 7.5vh;
    }
    .menuButton p{
        font-size: 2.3vh;
    }
}
@media (aspect-ratio:24/39){
    .container{
        height: 100vh;
        height: -webkit-fill-available;
        width: calc(100vh * 24 / 39);
        width: calc(-webkit-fill-available * 24 / 39);
        left: 50%;
        transform: translateX(-50%);
    }
    .title{
        font-size: 7.5vh;
        color: blue;
    }
    .menuButton p{
        font-size: 2.3vh;
    }
}
@media (max-aspect-ratio:24/39){
    .container{
        width: 100vw;
        height: calc(100vw * 39 / 24);
        top: 50%;
        transform: translateY(-50%);
    }
    .title{
        font-size: calc(calc(100vw * 39 / 24) * 0.075);
    }
    .menuButton p{
        font-size: calc(calc(100vw * 39 / 24) * 0.023);
    }
}