@media screen and (orientation: landscape) {
:root{
    --backgroundCol: rgb(8, 26, 100);
    --headerCol: rgb(4, 71, 131);
    --font: sans-serif;
    --textCol: black;
    --highlightCol: white;
    --border: 0.5vh solid rgb(0, 0, 0);
    --buttonBorder: 0.5vh solid rgb(111, 111, 111)
}
body{
    margin: 0px;
    width: 100vw;
    height: 100vh;
    background-color: var(--backgroundCol);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
h1, h2, h3, h4, h5, h5, p, a{
    margin: 0vh;
    font-family: var(--font);
    color: var(--textCol);
}

/*=======================================================================================

/*Header--------->*/
header{
    width: 100vw;
    height: 5vh;
    background-color: var(--headerCol);
    border-bottom: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
h1{
    font-size: 4vh;
}
/*<--------Header*/

/*Main-------->*/
main{
    width: 100vw;
    height: 90vh;
    display: flex;
    justify-content: center;
}
section{
    width: 32vw;
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10vh;
}
/*<--------Main*/

/*Footer-------->*/
footer{
    width: 100vw;
    height: 5vh;
    background-color: var(--headerCol);
    border-top: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerH3{
    font-size: 1.8vh;
}
/*<--------Footer*/

/*=======================================================================================

/*Content-------->*/
.contentBox{
    width: 28vw;
    height: 80vh;
    border: var(--border);
    background-color: rgb(15, 34, 110);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}
/*<--------Content*/

/*Content Header-------->*/
.contentHeader{
    width: 100%;
    height: 5%;
    position: sticky;
    top: 0px;
}
h2{
    font-size: 3.1vh;
}
/*<--------Content Header*/

/*Content Display-------->*/
.contentDisplay{
    display: flex;
    width: 100%;
    height: 95%;
    justify-content: center;
    gap: 2.5%;
}
/*<--------Content Display*/

/*About Content------>*/
p{
    font-size: 2.1vh;
    color: rgb(108, 108, 108);
    width: 90%;
}
/*<------About Content*/

/*Ausbildung Content------>*/
#ausbildungBox{
    width: 90%;
    height: 90%;
    justify-content: start;
}
#dateSelector{
    width: 100%;
    height: 10%;
    flex-direction: row;
    gap: 1vh;
    margin-top: 1vh;
}
#dateSelector button{
    aspect-ratio: 1/1;
    height: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0px;
}
.ausbildungArrow{
    height: 100%;
    aspect-ratio: 1/1;
    border: 0px;   
}
#prevArrow{
    visibility: hidden;
}
#dateH3{
    font-size: 2vh;
    text-align: center;
}
.ausbildungImg{
    aspect-ratio: 16/9;
    width: 100%;
    border: 0.5vh solid black;
}
/*<------Ausbildung Content*/

/*Hobbies Content------>*/
#hobbySelector{
    height: 15%;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    gap: 0vh;
}
.hobbyButton{
    height: 90%;
    aspect-ratio: 1/1;
    border: 0.5vh solid rgb(111, 111, 111);
    font-size: 9.8vh;
    color: white;
    background-color: black;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hobbyButton:hover{
    color: black;
    background-color: white;
}
#hobbyH3{
    height: 5%;
    font-size: 3.2vh;
}
#hobbyImgGrid{
    width: 90%;
    height: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}
.hobbyImg{
    aspect-ratio: 1/1;
    width:100%;
    height: auto;
    box-sizing: border-box;
    border: 0.5vh solid black;
}
/*<------Hobbies Content*/

/*Website Content------>*/
#websiteBox{
    justify-content: start;
}
.websiteLink{
    font-size: 2.8vh;
    text-align: center;
    margin-top: 5vh;
    text-decoration: none;
}
.websiteLink :hover{
    color: white;
}
/*<------Website Content*/

/*=======================================================================================

/*Selection-------->*/
.selectionWrapper{
    width: 20vw;
}
.pageSelection{
    color: black;
    text-decoration: none;
    font-size: 3.5vh;
    font-weight: bold;
}
.pageSelection :hover{
    color: white;
}
/*<--------Selection*/

/*=======================================================================================

/*Portrait-------->*/
.portrait{
    height: 54vh;
    width: auto;
    border: 0.5vh solid black;
}
/*<--------Portrait*/
}
@media screen and (orientation: landscape) and (aspect-ratio: 4/3) {
    
.portrait{
    height: 48vh;
}
.contentWrapper{
    width: 40vw;
}
.contentBox{
    width: inherit;
}
}