@media screen and (orientation: portrait) {
:root{
    --backgroundCol: rgb(8, 26, 100);
    --contentCol: rgb(15, 34, 110);
    --headerCol: rgb(4, 71, 131);
    --selectCol: rgb(0, 0, 0);
    --font: sans-serif;
    --textCol: black;
    --textHighlightCol: white;
    --border: 0.5vh solid rgb(0, 0, 0);
    --buttonBorder: 0.7vw solid rgb(111, 111, 111);
    --buttonCol: rgb(0,0,0);
    --buttonHighlightCol: rgb(255,255,255);
    --buttonTxtCol: rgb(255,255,255);
    --buttonTxtHighlightCol: rgb(0,0,0);
}
*{
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100vw;
    background-color: var(--backgroundCol);
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 0px;
}
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-items: center;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
}
section{
    height: 30vh;
    width: 45vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contentWrapper{
    width: 90vw;
    height: 50vh;
}
/*<--------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: inherit;
    height: inherit;
    border: var(--border);
    background-color: var(--contentCol);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
}
/*<--------Content*/

/*Content Header-------->*/
.contentHeader{
    width: inherit;
    height: 10%;
    position: sticky;
    top: 0px;
}
h2{
    font-size: 5.3vw;
}
/*<--------Content Header*/

/*Content Display-------->*/
.contentDisplay{
    width: inherit;
    height: 90%;
}
/*<--------Content Display*/

/*About Content------>*/
p{
    font-size: 3.6vw;
    color: rgb(108, 108, 108);
    width: 90%;
}
/*<------About Content*/

/*Ausbildung Content------>*/
#ausbildungBox{
    width: 90%;
    display: flex;
    justify-content: start;
    gap: 1.3vh;
}
#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: 1.7vh;
    text-align: center;
}
.ausbildungImg{
    width: 65%;
    aspect-ratio: 16/9;
    border: var(--border);
}
/*<------Ausbildung Content*/

/*Hobbies Content------>*/
#hobbiesBox{
    justify-content: space-evenly;
}
#hobbySelector{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 15%;
}
.hobbyButton{
    height: 100%;
    aspect-ratio: 1/1;
    background-color: var(--buttonCol);
    color: var(--buttonTxtCol);
    border: var(--buttonBorder);
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5vh;
}
.hobbyButton:hover{
    background-color: var(--buttonHighlightCol);
    color: var(--buttonTxtHighlightCol);
}
#hobbyH3{
    height: 5%;
    font-size: 2.5vh;
}
#hobbyImgGrid{
    height: 70%;
    width: 90%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 3vh;
}
.hobbyImg{
    width: 100%;
    aspect-ratio: 1/1.2;
    border: var(--border);
}
/*<------Hobbies Content*/

/*Website Content------>*/
#websiteBox{
    justify-content: start;
    width: 70%;
}
.websiteLink{
    font-size: 2.5vh;
    text-align: center;
    margin-top: 3.5vh;
    text-decoration: none;
}
.websiteLink :hover{
    color: var(--textHighlightCol);
}
/*<------Website Content*/

/*=======================================================================================

/*Portrait-------->*/
.portrait{
    height: inherit;
    }
    /*<--------Portrait*/
    
/*=======================================================================================

/*Selection-------->*/
.selectionWrapper{
    gap: 8vw;
}
.pageSelection{
    text-decoration: none;
    font-size: 5vw;
    font-weight: bold;
}
.pageSelection :hover{
    color: var(--textHighlightCol);
}
/*<--------Selection*/

}
@media screen and (orientation: portrait) and (aspect-ratio: 3/4) {
 
.selectionWrapper{
    gap: 6vw;
}
.pageSelection{
font-size: 4vw;
}
}