/* Navigation bar styling is starts here */
header {
    background-color: black;
    color: #fff;
    padding: 15px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* navBar: Logo Image */
.logo a {
    cursor: default;
}

.logo a > img {
    max-height: 40px;
    margin-right: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-list li {
    margin: 10px 10px 10px 10px;
}


.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #39FF14;
}
/* Navigation bar styling is ends here */

/* Footer styling is starts here */
footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: black;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Social Media styling starts here */
.social-medias a {
    margin: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 26px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.social-medias a:hover {
    color: #39FF14;
}

/* Social Media styling ends here */
.copyrightmarks p {
    margin: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.copyrightmarks p:hover {
    color: #39FF14;
    cursor: default;
}

@media screen and (max-width: 768px) {
    .nav-list {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 73px;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 10px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        text-align: center;
        z-index: 1;
    }

    .nav-list.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .menu-toggle {
        display: block;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: auto;
    }

    footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .social-medias {
        margin: 10px;
    }
}