body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: black;
    margin-right: 5%;
    margin-left: 5%;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 9vmin;
    color: #F6E5C2;
    position: relative;
    text-align: right;
}

h2,
#currentpage {
    color: #F6E5C2;
    font-style: italic;
    font-weight: 200;
    text-decoration: none;
    font-size: 2vmax;
}

p {
    color: #F6E5C2;
}

a {
    color: #F6E5C2;
    text-decoration: none;
}

a:hover {
    font-style: italic;
    font-weight: 100;
    text-decoration: none;
}

footer {
    position: relative;
    bottom: 11px;
    color: #655a45;
    text-align: right;
}

#portrait {
    height: 22vmax;
}

#cv {
    position: relative;
    top: 0%;
    right: 0;
    left: 0;
    line-height: 202%;
}

#statement {
    position: relative;
    right: 0;
    left: 0;
    line-height: 202%;
}

@media screen and (orientation:landscape) {
    #navdesk {
        position: relative;
        text-align: right;
        z-index: 2;
        margin-top: -3vmax;
    }
    #statement {
        margin-right: 44%;
        transform: translate(0%, -11%);
    }
    #navmob {
        display: none;
    }
    #workmobile {
        display: none;
    }
}

@media screen and (orientation:portrait) {
    h1 {
        text-align: center;
        position: relative;
        top: 3vh;
        font-size: 3.3max;
        padding-bottom: 22px;
    }
    #portrait {
        position: relative;
        left: 50%;
        transform: translate(-50%, 5%);
    }
    #cv,
    #statement {
        position: relative;
        margin-right: 5%;
        left: 5%;
        line-height: 202%;
    }
    #navdesk {
        display: none;
    }
    #navmob {
        position: absolute;
        margin: auto;
        margin-left: -5%;
        width: 100vmin;
        text-align: center;
        top: 2vmin;
    }
    #workmobile {
        position: relative;
        text-align: center;
    }
    a {
        font-size: 2vh;
        line-height: 202%;
    }
}