    body {
        margin: 0;
        padding: 0;
        font-family: 'AkzidenzGrotesk', sans-serif;
        font-weight: 100;
    }

    #container {
        color: rgb(16,12,8);
        background-color: rgb(251,251,251);
        min-height: 100vh;
        width: 100%;
        text-align: center;

        /* vertical centered */
        display: -webkit-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #footer {
        background-color: black;
        color: whitesmoke;
        height: 120px;
    }

    #nav {
        font-family: 'AkzidenzGrotesk', sans-serif;
        font-weight: 100;
        font-size: 20px;
        padding: 30px;
        color: whitesmoke;
    }

    #logo {
        position: fixed;
        top: 50px;
        width: 100%;
        text-align: center;
        background-image: url('../E--H_logo.png');
        background-repeat: no-repeat;
        height: 60px;
        background-size: contain;
        background-position: center;
    }

    #logo img {
        height: 60px;
        cursor: pointer;
    }

    #content {
        margin: auto;
        margin-top: 150px;
        padding:20px;
    }

    #launching {}

    #launching img {
        width: 50vh;
    }

    .blackBox {
        background-color: rgb(16,12,8);
        color: rgb(251,251,251);
        color: rgb(16,12,8);
        background-color: rgb(251,251,251);
        text-align: left; 
        font-size: 26px; 
        font-weight: 100;
        padding: 10px;
        margin-bottom: 40px;
        margin-top: 40px;
        min-width: 697px;
        cursor: pointer;
    }

    #visionLink, #conceptLink, #collabLink {
        margin-left: -10px;
    }

    #switchBW {
        background-color: rgb(16,12,8);
        width:80px;
        height:10px;
        cursor: pointer;
    }

    #switchBW.large {
        transition: width 0.3s;
        width: 120px;
    }

    #visionContent, #conceptContent, #collabContent {
        display: none;
    }


    #impressum,
    #contact {
        min-width: 450px;
        min-height: 350px;
        display: none;
        font-family: 'AkzidenzGrotesk', sans-serif;
        text-align: left;
        text-transform: uppercase;
    }

    #impressum h2,
    #contact h2 {
        font-family: 'AkzidenzGrotesk', sans-serif;
        font-size: 1.1em;
    }

    .innerDiv {
        margin-top: 200px;
    }

    @media only screen and (min-device-width: 320px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {

        #logo {
            top: 40px;
        }

        .hideMobile {
            display: none;
        }

        #logo img {
            height: 30px;
        }

        #launching img {
            width: 40vh;
        }

        #content {
        margin-top: 120px;
        }

        #footer {
            height: 100px;
        }

        #impressum,
        #contact {
            font-size: 13px;
            min-width: 320px;
            min-height: 270px;
        }

        .innerDiv {
            margin-top: 100px;
        }


        .blackBox {
            min-width: 300px;
        }
    }