:root {
    --dark-grey: #1A1A1A;
    --light-grey: #A3A3A3;
    --yellow: #FFD70C;
    --dropshadow: 2px 4px 7px rgba(0, 0, 0, .15);
}

@font-face {
    font-family: PlayfairDisplay;
    src: url(css/fonts/PlayfairDisplay-VariableFont_wght.ttf);
}

html, body {
    background-color: var(--dark-grey);
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: white;
    font-family: PlayfairDisplay;
    font-size: 1.2rem;
    scroll-behavior: smooth;
}

html {
    overflow-y: scroll;
}

.content{
    padding: 0px 35px 0px 35px;
}

div.rot90 {
    transform: rotate(90deg);
}

h3{
    font-weight: 500;
    font-size: 2rem;
}

img{
    border-radius: 20px;
}

header{
    width: 100vw;
    height: 7vh;
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid var(--light-grey);
    background-color: var(--dark-grey);
    box-shadow: var(--dropshadow);
    padding: 0px 35px 0px 35px;
    margin: 0;
    transition: .5s;
    z-index: 9;
}

header div.top{
    display: flex;
    justify-content: space-between;
    height: 7vh;
    width: calc(100% - 70px);
}

header img{
    height: 100%;
    width: auto;
}

header div.menutoggler{
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header div.menutoggler span{
    display: block;
    margin: auto;
    color: var(--light-grey);
    font-size: 5vh;
}

footer{
    margin-top: 150px;
    width: 100vw;
    height: 80vh;
    font-size: .8rem;
    background-color: var(--dark-grey);
    background-image: url(../img/begin_background.jpg);
    background-blend-mode: multiply;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: .7rem;
}

footer h5{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: underline;
    transition: .2s;
}
footer a:hover{
    color: var(--light-grey);
}

@media only screen and (min-width: 900px) {
    footer{
        flex-direction: row;
        height: 50vh;
    }
    footer div.img{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

section.maintenance{
    width: 700px;
    max-width: calc(100vw - 70px);
    display: block;
    margin: 150px auto 150px auto;
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 25px;
    border-radius: 20px;
    outline: 2px solid var(--yellow);
}
section.maintenance h2{
    text-align: center;
    color: var(--yellow);
}