@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');


html {
    overflow-x: hidden;
    background-color: white;
    color: black;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

nav {
    background-color:black;
    color: white;
    display: flex; 
    justify-content: flex-end;
    position: sticky; 
    top: 0;
}

.logo {
    min-width: 7%;
    min-height: 7%;
    max-width: 7%;
    max-height: 7%;
}

.logo-div h1 {
    display: flex;
    align-items: center;
}

.second-logo {
    min-width: 7%;
    min-height: 7%;
    max-width: 7%;
    max-height: 7%;
    margin: 0 2.5% 0 3%;    
}


nav div {
    margin-left: 2%;
}

a {
    display: flex;
    align-items: center;
    padding: 1% 2% 1% 2%;
    /* only one line */
    white-space: nowrap;
    color: white;
    text-decoration: none;
    transition: 500ms;
}

a:hover {
    background-color: White;
    color: black;
}

section.home {
    display: flex;
    justify-content: center;
}


footer {
    display: flex;
    background-color:black;
    color: white;
    margin-top: auto;
    width: 100%;
}

footer ul {
    margin-left: 10%;
}

footer li {
    list-style-type: none;
    margin: 4% 0 4% 0;
}

footer li a {
    font-weight:lighter;
}

footer div {
    width: 45%;
    margin-left: 2.5%;
}

footer div p {
    font-weight: lighter;
}

@media only screen and (max-width: 1500px) {
   
    .logo {
        min-width: 9%;
        min-height: 9%;
        max-width: 9%;
        max-height: 9%;
    }

    .second-logo {
        min-width: 9%;
        min-height: 9%;
        max-width: 9%;
        max-height: 9%;
        margin: 0 2.5% 0 3%;    
    }
}

@media only screen and (max-width: 1400px) {
   
    .logo {
        min-width: 10%;
        min-height: 10%;
        max-width: 10%;
        max-height: 10%;
    }

    .second-logo {
        min-width: 10%;
        min-height: 10%;
        max-width: 10%;
        max-height: 10%;
        margin: 0 2.5% 0 3%;    
    }
}

@media only screen and (max-width: 1300px) {
   
    .logo {
        min-width: 14%;
        min-height: 14%;
        max-width: 14%;
        max-height: 14%;
    }

    .second-logo {
        min-width: 14%;
        min-height: 14%;
        max-width: 14%;
        max-height: 14%;
        margin: 0 2.5% 0 3%;    
    }
}



@media only screen and (max-width: 1150px) {

    nav {
        flex-direction: column;
        position: static;
    }

    .logo {
        min-width:7%;
        min-height:7%;
        max-width:7%;
        max-height:7%;
    }

    .second-logo {
        min-width:7%;
        min-height:7%;
        max-width:7%;
        max-height:7%;  
    }
}

@media only screen and (max-width: 600px) {

    .logo {
        min-width:9%;
        min-height:9%;
        max-width:9%;
        max-height:9%;
    }

    .second-logo {
        min-width:9%;
        min-height:9%;
        max-width:9%;
        max-height:9%;  
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer ul {
        margin-left: 0;
        width: 80%;
        padding-left:0;
    }

    footer div {
        margin-left: 0;
        width:80%;
    }

    footer #a {
        padding: 0;
    }
}
