html {
    background-image: url("../images/background/wallpaper.webp");
    background-size: cover;
    background-repeat:repeat;
    height: 100vh;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

footer {
    text-align: center;
    padding-top: 20px;
}

h5 {
    font-size: 1vmax;
    margin-top: 20px;
}

#nav {
    text-align: center;
}

.nav-link {
    border-right: 3px #ffae00 solid;
    border-left: 3px #ffae00 solid ;
    border-radius: 35px;
    font-size: 2vmax;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
} 

.nav-link:hover {
    background: rgba(0, 0, 0, 0.50);
    border-right: 12px #ff0000 solid;
    border-left: 12px #ff0000 solid ;
    transition: 0.6s ease-in-out;
    transition-delay: 0.03s;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}