html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(250, 250, 250);
}

main {
    flex: 1 0 auto;
    margin-bottom: 50px;
}

#navbarTop {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.navbar {
    background-color: rgba(1, 62, 98, 0.7);
    justify-content: center;
    box-shadow: rgba(157, 229, 255, 0.5) 0px -5px 15px 10px inset, rgba(200, 200, 200, 0.15) 0px 36px 30px 10px;
}

.mobilImg {
    display: none;
    width: 50px;
    height: 50px;
}

.dropdown-menu {
    background-color: rgba(150, 150, 150, 0.8);
}

    .dropdown-menu li :hover {
        background-color: rgba(200, 200, 200, 0.5) !important;
    }

.navbar-nav {
    gap: 10px;
}

.nav-item {
    font-weight: 600;
    font-family: 'Bodoni MT';
}

.nav-link {
    color: white !important;
}

    .nav-link:hover {
        font-weight: 800;
    }

.dropdown-item {
    color: white !important;
}

footer {
    height: 60px;
    background-color: rgba(1, 62, 98, 0.7);
    box-shadow: rgba(157, 229, 255, 0.5) 0px -5px 15px 10px inset, rgba(200, 200, 200, 0.15) 0px 36px 30px 10px;
    border-top: 1px solid;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
}

    footer a {
        color: rgb(210, 210, 210);
        text-decoration: none;
        font-weight: 700;
    }

        footer a:hover {
            color: rgb(240, 240, 240);
            font-weight: 800;
        }

@media only screen and (max-width: 991.20px) {
    #navbarTop {
        display: none;
    }

    .mobilImg {
        display: block;
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
    }

    .dropdown-item:hover {
        background-color: transparent;
        font-weight: 800;
    }
}
