@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.39);
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.nav ul {
    list-style: none;
    display: flex;
    margin-bottom: 0px !important;
}

.nav li {
    margin-right: 20px;
}

.signup a {
    background-color: #923534;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.signup a:hover {
    background-color: #4CAF50;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #923534;
    margin: 3px 0;
}

.mobile-nav {
    display: none;
    background-color: #923534;
    padding: 20px 5px 10px 5px;
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    width: 100%;
    padding: 0;

}

.mobile-nav li {
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;


}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;

}

footer {
    background-color: black;
    width: 100%;
    height: auto;
    padding: 20px 0px;
}

footer p {
    color: rgba(255, 255, 255, 0.77);
    font-weight: 100;
    font-size: 13px;
}
footer a{
    color: white;
    text-decoration: none;
    font-size: 16px;

}
footer a i{
   margin-right: 5px;
}

#nav-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



@media screen and (max-width: 768px) {
    header {
        justify-content: start;
    }

    .nav {
        display: none !important;
    }

    .menu-icon {
        display: flex;
    }

    .menu-open .mobile-nav {
        display: block;
    }

    .signup a {
        padding: 0;
    }

    .signup a:hover {
        background-color: #923534;
    }

    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    footer p{
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;

    }

}
