/*
 * Globals
 */


/* Custom default button */

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none;
    /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
    /* Ubicación de la imagen */
    background-image: url(assets/img/fondo_1920_1280.jpg);
    /* Centrar imagen vertical y horizontalmente */
    background-position: center center;
    /* Para que no se repita la imagen */
    background-repeat: no-repeat;
    /* La imagen se fija en la ventana de visualización para que la altura de la imagen no supere a la del contenido */
    background-attachment: fixed;
    /* La imagen de fondo se reescala automáticamente con el cambio del ancho de ventana del navegador */
    background-size: cover;
    /* Se muestra un color de fondo mientras se está cargando la imagen de fondo o si hay problemas para cargarla */
    background-color: #464646;
}

body:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

body h1,
a,
span,
div,
img,
p {
    position: relative;
}


/* PARA RESALTAR EN LOGO EN FONDO GRIS */


/* img {
    position: relative;
    filter: brightness(1.8);
} */

.cover-container {
    max-width: 42em;
}

a.email:link {
    color: rgba(250, 250, 250)
}

a.email:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
}

a:hover {
    text-decoration: none;
    color: rgba(250, 250, 250);
}


/*
 * Header
 */

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}

@media (max-width:768px) {
    body {
        background-image: url(assets/img/fondo_movil_tb.jpg);
    }
    #NS {
        display: none;
    }
    #Elvis {
        display: block;
    }
}

@media (min-width:769px) {
    #Elvis {
        display: none;
    }
    #NS {
        text-align: right;
    }
}