body {
    font-family: "Montserrat", sans-serif;
    font-weight: 00;
    color: var(--light);
 
    background: url(Imagenes/FondoV.png) no-repeat center;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.offcanvas-body {
    font-size: 20px;
}

.navbar {
    background-color: #bba26b;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
}

.navbar-brand {
    font-weight: 500;
    color: #ffff;
    font-size: 24px;
    transition: 0.3s color;
}

.login-button {
    background-color: #691c32;
    color: #ffff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.login-button:hover {
    background-color: #000000;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    /*color: #fff;*/
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

@media (min-width: 911px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translatex(-50%);
        width: 0;
        height: 2px;
        background-color: #691c32;
        visibility: hidden;
        transition: 0.3 ease-in-out;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}

.form-label {
    color: #000000;
}

section{
    background-color: #691c32;
    border-radius: 16px;
}
.modal{
    color: #000;
}


