html {
    user-select: none;

    overflow-x: hidden;
    scrollbar-width: none;

}

body {
    font-family: Consolas, monospace, 'Roboto Slab Light';
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    margin: auto;
    user-select: none;
}

p {
    font-size: larger;
    letter-spacing: 0.05rem;
}

nav {
    width: 100%;
    height: 60%;
    background: white;
    justify-content: left;
    position: fixed;
    display: flex;
}

nav .pagetitle {
    position: absolute;
    top: 10rem;
    left: -7rem;

    font-size: 3rem;
    transform: rotate(-90deg);
    /*
    /* Legacy vendor prefixes that you probably don't need... 

    /* Safari 
    -webkit-transform: rotate(-90deg);

    /* Firefox 
    -moz-transform: rotate(-90deg);

    /* IE 
    -ms-transform: rotate(-90deg);

    /* Opera 
    -o-transform: rotate(-90deg);

    /* Internet Explorer 
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    */
    transform-origin: (0 0);
}

nav .pagetitle p {
    font-size: 1rem;
    margin-left: 5px;
}


/* SITES */
.mainContainer {
    display: flex;
    width: 80%;
    min-height: fit-content;
    max-width: 1440px;
    flex: 1 1 auto;
    margin: 0 auto;
    padding-top: calc(150px + 10vh);
    text-decoration: none;
    color: #343434;
}


div.footer {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: baseline;
    margin-bottom: 1rem;
}

div.footer p {
    font-size: small;
    margin-bottom: 30px;

}

div.footer a {
    font-size: small;
    text-decoration: none;
    color: #343434;
}


/*IMPRESSUM*/

body#impressBody {
    background: none;
    /*background-color: #eee;*/
}

#impressContainer p {
    letter-spacing: normal;
    font-size: medium;
}

body .topbarImp {
    width: 100vw;
    background-color: white;
    padding: 3vh;
    position: fixed;
    top: 0;
    border-bottom: solid;
    border-color: #000;
    border-width: 2px;
    justify-content: left;
    align-items: center;
    display: flex;
}

body .topbarImp #HeadlineImp {
    font-size: 4vh;
}

body .topbarImp #pfeil {
    height: 4vh;
    width: 10vh;
    background-image: url('../images/pfeil.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

body #impressContainer {
    width: 80vw;
    margin: 15vh auto;
    margin-top: 20vh;
}


/* Small devices such as large phones (640px and up) */
@media only screen and (min-width: 40em) {}

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 48em) {

    nav {
        width: 100%;
        background: white;
        justify-content: left;
        position: fixed;
        display: flex;
    }


    nav .pagetitle {
        position: relative;
        top: 0;
        left: 0;
        font-size: 3rem;
        margin: 30px;
        transform: rotate(0deg);
    }
    nav .pagetitle p {
        font-size: 1rem;
    }

}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 64em) {




    /*Footer*/
    div.footer {
        display: block;
        position: fixed;
        bottom: 0;
        height: 50px;
        width: 100%;
        align-items: start;
    }

    div.footer p {
        position: absolute;
        left: 0;
        font-size: small;
        margin: 0 30px;
    }

    div.footer a {
        position: absolute;
        right: 0;
        font-size: small;
        margin: 0 30px;
        color: #343434;
    }

    body .topbarImp #pfeil {
        height: 4vh;
        width: 12vh;
    }



}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 80em) {


    .imageAbout {
        width: 20vw;
        height: 20vw;
        margin: 0 25px;
    }
}