html,
body{
    margin:0;
    padding:0;
	background:#b00000;
}

#cabecera{
    width:100%;
}

#cabecera img{
    width:100%;
    height:auto;
    display:block;
}

#principal{

    background:#ffffff;

    text-align:center;

    padding:30px 15px 50px 15px;
}

.img-titulo{

    width:100%;
    max-width:700px;

    height:auto;

    margin-bottom:30px;
}

.contenedor-botones{

    display:flex;

    justify-content:center;

    gap:25px;
}

.btn-menu{

    min-width:280px;

    font-weight:bold;
}

@media (max-width:768px){

    .contenedor-botones{

        flex-direction:column;

        align-items:center;
    }

    .btn-menu{

        width:90%;

        max-width:320px;
    }

}

#piePagina{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:30px;
    background-color:#c00000;
    z-index:1000;
}

.contenedor-cierre{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffffff;
}

.mensaje-cierre{

    text-align:center;

    max-width:700px;

    padding:40px;
}

.mensaje-cierre h2{

    color:#c00000;

    margin-bottom:20px;
}

.mensaje-cierre p{

    font-size:22px;
}

.NoMostrar
{
display:none;
}