* {
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #ffca36;
    --dark-color: #444;
    --navbar-height: 120px;
}

.flash-alert {
    position: fixed;
    width: 90%;
    top: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 100;
}

main {
    min-height: calc(100vh - var(--navbar-height));
}

.btn-yellow {
    color: var(--dark-color);
    background-color: var(--primary-color);
    border: solid 1px var(--primary-color);
    margin-bottom: 50px;
}
.btn-yellow:hover {
    color: var(--dark-color);
    background-color: #f6c235;
    border: solid 1px #f6c235;
}

/* Navbar */
nav {
    border-bottom: solid 10px var(--primary-color);
}
#desktopNavbar {
    padding: 15px 10%;
    flex-direction: row;
}
#desktopNavbar .desktop-navbar-nav {
    margin: 0;
    padding: 0 10vw;
    display: flex;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    gap: 5vw;
}
#desktopNavbar .desktop-navbar-nav a {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
}
#desktopNavbar .nav-vert-hr {
    background-color: var(--dark-color);
    width: 2px;
    height: 30px;
}

#mobileNavbar {
    display: none;
}
#desktopNavbar {
    display: flex;
}
@media (max-width: 800px) {
    #desktopNavbar {
        display: none !important;
    }
    #mobileNavbar {
        display: flex !important;
    }
}
@media (min-width: 801px) {
    #desktopNavbar {
        display: flex !important;
    }
    #mobileNavbar {
        display: none !important;
    }
}

/* Footer */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
}
footer .footer-top {
    width: 100%;
    height: 150px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
}
footer .footer-top .footer-left {
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
footer .footer-top .footer-right {
    display: flex;
    flex-direction: column;
    width: 40%;
}
footer .footer-top .footer-right .h-contact {
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-color);
}
footer .footer-top .footer-right .footer-span-mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
footer .footer-top .footer-right .footer-span-mail svg {
    color: var(--dark-color);
    width: 25px;
}
footer .footer-top .footer-right .footer-span-mail .footer-mail {
    font-size: 25px;
    text-decoration: none;
    color: var(--dark-color);
}
footer .footer-top .footer-right .footer-span-mail .footer-mail:hover {
    text-decoration: underline;
}
footer .footer-top img {
    height: 80px;
}
footer .footer-top .footer-vert-hr {
    background-color: var(--dark-color);
    height: 80px;
    width: 2px;
}
footer .footer-bottom {
    width: 100%;
    background-color: var(--dark-color);
    font-size: 14px;
}
footer .footer-bottom ul {
    margin: 12px;
    height: 100%;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
footer .footer-bottom ul li,
footer .footer-bottom ul a {
    color: #aaa;
    text-decoration: none;
}
footer .footer-bottom ul a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    footer .footer-top {
        height: 250px;
        flex-direction: column;
    }
    footer .footer-top .footer-left {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
    }
    footer .footer-top .footer-vert-hr {
        background-color: var(--dark-color);
        width: 80px;
        height: 2px;
    }
    footer .footer-top .footer-right {
        width: 80%;
        align-items: center;
    }
    footer .footer-top .footer-right .h-contact {
        font-size: 30px;
    }
    footer .footer-top .footer-right svg {
        width: 20px;
    }
    footer .footer-top .footer-right .footer-mail {
        font-size: 20px;
    }
}
