/*Use MOBILE LAYOUT for aspect ratios < 3/4 !!*/
html, body{
    margin: 0;
    padding: 0;
    border: 0;

    height: 100%;
    width: 100%;

    overflow-x: hidden;
    overflow-y: hidden;
}

/*Mobile orientation*/
@media (max-aspect-ratio: 3/4){
    body{
        position: relative;
    
        display: flex;
        flex-direction: column;
        align-items: center;
    
        height: 100%;

        background-color: #272838;
        color: white;
    
        position: relative;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: hidden;
    
        padding-top: 3vh;
        padding-bottom: 3vh;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    h2{
        text-align: center;
        font-size: 2rem;
        line-height: 2rem;
    
        font-weight: 400;
        letter-spacing: 0.15rem;
    
        text-align: left;
    }
}
/*Desktop orientation*/
@media (min-aspect-ratio: 3/4){
    body{
        position: relative;
    
        display: flex;
        flex-direction: row;
        align-items: center;
    
        background-color: #272838;
        color: white;
    
        position: relative;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: scroll;
    
        height: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    h2{
        text-align: center;
        font-size: 2.5rem;
        line-height: 2.5rem;
    
        font-weight: 400;
        letter-spacing: 0.15rem;
    
        text-align: left;
    }
}

text{
    font-family: Garamond, monospace;
}
p{
    font-size: 1.75rem;
    line-height: 3rem;
}
h1{
    text-align: center;
    font-size: 3rem;
}

.title{
    color: black;
}
#pageBody{
    position: relative;
    height: 100%;
    width: 100%;
}
#pageBody__contentWrapper{
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
}


::-webkit-scrollbar{
    width: 1vw;
}