@font-face {
    font-family:'Sequel-Sans-bold';
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/Sequel-Sans/Sequel_Sans_Bold_Disp.otf") format('opentype');
 }
 @font-face {
    font-family:'Sequel-Sans-medium';
    font-style: normal;
    font-weight: normal;
    src: url("/../fonts/Sequel-sans\ Sans\ Medium\ Disp.otf") format('opentype');
 }

 @font-face {
    font-family:'Sequel-Sans-light';
    font-style: normal;
    font-weight: light;
    src: url("../fonts/Sequel-Sans/Sequel\ Sans\ Light\ Disp.otf") format('opentype');
 }


body {
    font-family: 'Sequel-Sans-medium', 'Helvetica';
    letter-spacing: 1px;
}


h1 {
    font-family: "Sequel-Sans-bold", 'Helvetica';
    font-weight: bold;
    color: #ffffff;
}

.nav {
    justify-content: space-around;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.nav-link {
    color: white;
    font-size: 15px;
    font-family: 'Sequel-Sans-light';
    letter-spacing: 2px;
}


.nav-link:hover {
    color: lightgrey;
}

.logo-active {
    font-family: 'Sequel-Sans-bold';
    font-size: 17px;
}

.wrapper {
    text-align: center;
    padding-top: 40px;
    width: 100%;
    height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url("../Resources/pexels-cottonbro-studio-5081971.jpg");
    background-size: cover;
    background-position: center;
}

#header-wrapper {
    width: 60%;
    margin: 0 auto;
}

.sub-heading {
    color: darkgrey;
    margin-top: 70px;
    font-size: 14px;
    font-family: 'Sequel-Sans-light';
}

.vorwort h1 {
    font-size: 30px;
    color: black;
}

.vorwort p {
    text-align: left;
    padding-top: 30px;
    font-size: 18px;
    color: black;
    font-family: "Sequel-Sans-light";
    line-height: 1.7;
    letter-spacing: 1.8px;
}


.vorwort h1 {
    color: black;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: black;
    background-color: #000;
    margin-top: 100px;
    height: 200px;
    color: white;
    bottom: 0;
}

footer h1 {
    font-size: 24px;
}

footer p {
    font-family: 'Sequel-Sans-light';

}

footer a {
    list-style-type: none;
    text-decoration: none;
    color: white;
    font-family: 'Sequel-Sans-light';
}

footer a:hover {
    color: lightgrey;
}

.contact {
    display: flex;
    flex-direction: column;
}

.about {
    display: flex;
    flex-direction: column;
}

.social {
    display: flex;
    flex-direction: column;
}

.container-footer {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

@media screen and (max-width: 1080px) {
    #header-wrapper {
        width: 85%;
    }

    .vorwort h1 {
        font-size: 20px;
    }

    footer {
        height: 400px !important;
        width: 100%;
        display: flex;
    
    }

    .container-footer {
        width: 95%;
        display: flex;
        flex-direction: column !important;
        justify-content: space-around;

    }
    footer h1 {
        font-size: 12px;
    }

    .about a {
        font-size: 12px;
    }

    .contact p {
        font-size: 12px;
    }

    .social a {
        font-size: 12px;;
    }
}

