@media (orientation: portrait) {
    /* Formate für hochformatige Ausgabemedien */

    .title {
        font-size: 6vmax;
        margin: 1vmax;
    }

    .footer {
        font-size: 1.5vmax;
        margin-bottom: 0.5vmax;
    }

    .subtitle {
        font-size: 2.5vmax;
        margin: 0.5vmax;
        margin-bottom: 0.7vmax;
    }

    .twt {
        width: 40%;
    }

    .center-flex {
        height: 45%;
    }
}

@media (orientation: landscape) {
    /* Formate für querformatige Ausgabemedien */
    
    .title {
        font-size: 9vmax;
        margin: 1vmax;
    }

    .footer {
        font-size: 0.7vmax;
        margin-bottom: 0.5vmax;
    }

    .subtitle {
        font-size: 2vmax;
        margin: 0.5vmax;
        margin-bottom: 1vmax;
    }

    .twt {
        width: 20%;
    }

    .center-flex {
        height: 65%;
    }
}

@media (min-aspect-ratio: 16/9) {

    #player {
        width: 100%;
    }

}

@media (max-aspect-ratio: 16/9) {

    #player {
        height: 100%;
    }

}

body {
    font-family: 'Lato', sans-serif;
    background-color: rgb(66, 66, 66);
    color: white;
    user-select: none;
    text-align: center;
    touch-action: none;
}

.twt {
    color: white;
    fill: currentcolor;
    height: auto;
}

.center-flex {
    position: absolute;
    width: 80%;
    left: 50%;
    /*transform: translate(-50%, 0%);*/
    /*height: 65%;*/
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.vertical-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.box {
    /*position: absolute;*/
    background-clip: content-box;
    /*background-color: rgba(49, 49, 49, 0.5);*/
    /*width: 80%;
    left: 50%;
    */
    flex: auto;
    /*padding: 1vmax;*/
}

.box2 {
    /*position: absolute;
    background-clip: content-box;
    background-color: rgba(49, 49, 49, 0.5);
    width: 80%;
    left: 50%;
    */
    flex: auto;
    /*padding: 1vmax;*/
}


.listtitle {
    font-size: 1.7vmax;
}

.list {
    margin-top: 0.5vmax;
    margin-bottom: 1vmax;
    font-size: 1.3vmax;
    max-width: 50%;
}

.red {
    color: red;
}

a {
    text-decoration: none;
    color: lightblue;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

li::before {
    content: "> ";
}

li::after {
    content: " <";
}

#player {
    position: fixed;
    z-index: -99;
    top: 0px;
    left: 0px;
}

#protlayer {
    position: fixed;
    z-index: -98;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
#bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -99;
}