.nav-link {
    color: green;
}

.container-fluid {
    justify-content: space-evenly;
}

.btn {
    padding: 0.375rem 1rem;
}

.nav-item {
    margin-left: 2rem;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    display: contents;
}

.navbar-brand img {
    width: 10%;
    height: auto;
}

* {
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

.header-fondo a {
    outline: none;
    text-decoration: none;
    font-size: 2rem;
    position: absolute;
}

.header-fondo a:link {
    color: #a45e4d;
}

.header-fondo a:visited {
    color: white;
}

.header-fondo a:focus {
    background: #a45e4d;
}

.header-fondo a:hover {
    background: #a45e4d;
}

.header-fondo {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;

}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: auto;
    flex-direction: column;
    background-image: url(../img/Fondo_Formulario_de_Reservas.jpg);
    background-size: 100% 100%;
}

.logoheader {
    display: flex;
    padding-top: 2rem;
    width: 30vw;
    height: auto;
    z-index: 2;
}

.formulario {
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 70vw;
    height: 50vh;
    margin-top: 3rem;
    padding: 1rem;
    padding-bottom: 0rem;
    background-color: white;
    border-color: #0e7c4b;
    border-width: 0.5rem;
    border-style: solid;
    border-radius: 1rem;
}

.mb-3 input {
    height: 2.5rem;
}

.mb-3 textarea {
    height: 7rem;
    resize: none;
}

.envi {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
}

.enviar {
    width: auto;
    padding: 0.5rem;
    color: white;
    font-weight: bold;
    background-color: #0e7c4b;
    border-color: white;
    border-width: 0.2rem;
    border-style: solid;
}

@media (min-aspect-ratio: 16/9) {
    .header-fondo img {
        width: 100vw;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .header-fondo img {
        width: auto;
        height: 100vh;
    }
}

@media screen and (max-width: 800px) {
    .logoheader {
        width: 50vw;
        height: auto;
    }

    .enviar img {
        width: auto;
        height: 5vh;
    }
}

@media screen and (max-width: 650px) {
    .logoheader {
        width: 70vw;
        height: auto;
    }

    .enviar img {
        width: auto;
        height: 3vh;
    }

    .navbar-brand img {
        width: 40%;
        height: auto;
    }
}