/*Allgemeines:*/
@font-face { 
    font-family: "defaultFont"; 
    src: url("/FontsHS/IBMPlex/IBM-Plex-Mono/IBMPlexMono-Light.ttf"); 
} 
body{
    background-color: var(--hell);
    color: var(--dunkel);
    margin: 0px; 
    padding: 0px;
    font-family: "defaultFont", monospace;

    overscroll-behavior: none;
}
h1{
    padding: 0;
    margin: 0;
    font-size: 56px;
    font-weight: bold;
  }
.containerGeteilt{
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: auto;
}
.containerRechts{
    position: relative;
    height: fit-content;
    width:50%;
    float: right;

    padding: 30px;
    box-sizing: border-box;
    overflow: auto;
}
.containerLinks{
    position: relative;
    height:fit-content;
    min-height: 100%;
    width:50%;
    float:left;

    padding: 30px;
    box-sizing: border-box;
}

#openDatenschutzerklärung{
    text-decoration: underline;
    font-weight: bold;
    color: var(--dunkel);
}
#openDatenschutzerklärung:hover{
    background-color: var(--akzent);
    color: var(--dunkelFix);
    transition: 0.5s;
}
#beschreibung{
    font-size: 24px;
}
#hinweis{
    font-size: 24px;
    font-weight: bold;
    color: var(--dunkelFix);
    background-color: var(--akzent);
}
#backToHomeButton{
    position: fixed;
    color:var(--dunkelFix);
    background-color: var(--akzent);
    border: none;
    border-top: none;
    border-left: none;
    border-radius: 0px 0px 75px 0px;
    font-size: 26px;
    height: 75px;
    width: 75px;
    z-index: 8000;
    transition: 0.5s;
    cursor: pointer;
}
#backToHomeButton:hover{
    background-color: var(--akzent);
    border-radius: 0px 0px 150px 0px;
    height: 150px;
    width: 150px;
}


/*Media Queries*/

@media screen and (orientation: portrait){
    .containerGeteilt{
        height: fit-content;
        width: 100%;
        overflow: auto;

        padding-top: 20px;
    }
    .containerLinks, .containerRechts{
        height: fit-content;
        min-height: 0%;
        width: 100%;
        float: none;
    }
    h1{
        font-size: 38px;
      }
}
