@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body {
    font-family: "Montserrat", sans-serif;
}

#navbar {
    height: 100vh;
    background-color: #222222;
    padding: 0;
}

#navbar a:hover {
    text-decoration: none;
}

#nav-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

#nav-logo img {
    width: 70px;
}

ul {
    list-style: none;
    padding: 0;
}

.nav_item {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav_item .icon {
    width: 40px;
}

.nav_item p {
    font-size: 10px;
    color: white;
    max-width: 80px;
    text-align: center;
    margin-top: 5px;
}

.nav_item:hover {
    background-color: black;
}

#navbar .seperator {
    background-color: white;
    margin: 10px;
}

.content {
    overflow: scroll;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_section {
    padding-top: 100px;
    text-align: justify;
    padding-left: 100px;
    max-width: 800px;
}

#home.content {
    background-image: url("./img/home-bg.jpg");
}

#home img {
    margin-top: 200px;
}

#about.content {
    background-image: url("./img/about-bg.png");
}

#services.content {
    background-image: url("./img/services-bg.jpg");
}

#contact.content {
    background-image: url("./img/contact-bg.jpg");
}

#footer {
    position: absolute;
    z-index: 1000;
    left: 80vw;
    bottom: 0vh;
}

#footer .footer-section {
    height: 40px;
    background-color: white;
    box-shadow: 0 1px 1px 1px black;
    border-left: 2px solid blue;
    border-right: 2px solid red;
    color: #222222;
    font-weight: light;
    font-size: 12px;
    padding: 10px;
}

#footer .footer-section p {
    padding: 0;
    margin: 0;
}

#footer .footer-section a {
    color: #222222;
}

#footer .footer-section a:hover {
    color: black;
}

/*--Mobile--*/
#mobile_navbar {
    display: none;
}

#mobile-nav-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile-nav-logo img {
    width: 70px;
}

@media screen and (max-width: 1100px) {
    #navbar {
        display: none;
    }

    #mobile_navbar {
        display: flex;
        flex-direction: column;
    }

    .content_section {
        padding-top: 20px;
        padding-left: 0;
        padding-bottom: 50px;
        text-align: left;
    }

    .content {
        overflow: initial;
    }

    #footer {
        position: fixed;
        left: 0;
        width: 100vw;
        text-align: center;
    }

    #home img {
        width: 200px;
    }

    #home.content {
        max-width: 100vh;
    }
}
