/** Morán Noriega, Roberto. (32877155N) DAW 2023 - DIW **/

*
{
    margin: 0;
}

html
{
    width: 100%;
    font-family:'Belwe Bd BT','Verdana','Monaco',sans-serif;
    color: rgb(255, 255, 255);
    background-color: black;
}

body {
    width: 100%;

    margin: 0;
    padding: 0; /* Agrega esto para asegurarte de que no haya relleno en el body */
}

header
{
    width: 100%;
    text-align: center;
    font-size: 60px;
    font-family:'Belwe Bd BT','Verdana','Monaco',sans-serif;
    color: rgb(255, 255, 255);
    background-color: black;

    margin-bottom: 0; /* Asegura que no haya margen inferior en el header */
}

#logo {
    display: flex;
    align-items: center; /* Centra verticalmente los elementos hijos */
    justify-content: center; /* Centra horizontalmente los elementos hijos */
    text-align: center; /* Alinea el texto en el centro */
}

#imgTitulo {
    width: 80px;
    height: 80px;
    margin-right: 10px; /* Ajusta el margen entre el logotipo y el h1 según sea necesario */
    padding-bottom: 10px;
}

#h1 {
    font-size: 60px; /* Mismo tamaño que el logotipo */
    margin: 0; /* Asegura que no haya margen interno en el h1 */
}

/*header h1
{
    font-size: 70px;
    text-align: center; 
}*/

/*#logo img
{
    width: 120px;
    height: 120px;
    float: left;
    padding-left: 10px;
    padding-top: 10px;
}*/

#imgLogotipo
{
    height: 50px;
    width: 50px;
}

nav {
    width: 100%;
    padding-top: 10px;

    z-index: 2; /* Ajusta según sea necesario, asegúrate de que sea mayor que el contenido */
    margin-top: 0; /* Asegura que no haya margen superior en el nav */
}

section
{
    width: 100%;
}

footer
{
    position: absolute;
    width: 100%;
}

footer p
{
    float: right;
    padding-top: 10px;
    padding-right: 50px;
}

/*#menuPrincipal
{
    margin-left: 190px;
}*/

#menuPrincipal li
{
    float: left;
    margin-left: 10px;
    display: inline;
    list-style: none;
    word-spacing: 10px;
}

#menuPrincipal li a
{
    float: left;
    margin-left: 10px;
    display: inline;
    list-style: none;
    color: rgb(249, 246, 246);
}

#menuPrincipal li a:hover
{
    color: rgb(10, 139, 253);
    cursor: pointer;
}

#menuOpciones
{
    float: right;
    display: inline;
    list-style: none;
    margin-right: 20px;
}

#menuOpciones li
{
    float: right;
    display: inline;
    list-style: none;
}

#menuOpciones li:hover
{
    color: rgb(10, 139, 253);
    cursor: pointer;
}

#menuPie
{
    float: right;
    margin-right: 20px;
    display: inline;
    list-style: none;
}

#menuPie li
{
    display: inline;
    list-style: none;
    padding-right: 30px;
}

#menuPie li a
{
    color: white;
}

#menuPie li a:hover
{
    color: rgb(10, 139, 253);
    cursor: pointer;
}

.btn-outline-light:hover
{
    background-color: chartreuse;
}

.btn-outline-success:hover
{
    background-color: chartreuse;
    color: black;
}

.enlaces-boot:hover
{
    color: chartreuse !important;
}


.fondo
{
    background-color: black;
}

.principal {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    height: 100vh;
    background-color: black; /* Añadí el fondo negro aquí */
    color: white; /* Añadí el color de texto blanco aquí */
}

#contenidoCuerpo {
    width: 100%; /* El 100% del ancho de la ventana (viewport) */
    height: 100vh; /* El 100% de la altura de la ventana (viewport) */
    background-color: black;
    color: white;
}

#nombreGrupo{
    font-family:'Belwe Bd BT','Verdana','Monaco',sans-serif;
}

/*main {
    width: 100%;
    height: 100vh;
}*/