body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serifs;
    background-color: rgb(247, 229, 229);

}
/*#region Encabezado*/
.Encabezado{
    border: 0px;
    margin: 0px;
    background-color: #2B2020;    
    width: 100%;
    margin-bottom: 20px;
}

.Encabezado ul{
    list-style-type: none;
    margin: 0;
    padding: 0;    
}
.Encabezado li{    
    display: inline;
    padding: 2%;
}
.Encabezado a{
    color: white;
}

/*#endregion*/

/*#region Botones*/
.Botones {
    display: flex;    
    flex-direction: row;
    justify-content: space-around;
    padding-top: 3px;
    margin: 10px;
}
.Botones a{
    background-color:#9F6464;
    color: #2B2020;
    text-decoration: none;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 100px;
    padding-left: 100px;
    border-radius: 15px; 
    border: 1px solid #2B2020;   
}
.Botones a:hover{
    background-color:#2B2020;
    color: white;
}

.Entrar {
    width: 20%;   
    text-align: center;
}

.Entrar:hover{
    background-color:#2B2020;
    color: white;
}
/*#endregion*/


/*#region Banner*/
.Banner{    
    background-color: #2B2020;
    color: white;
    display: flex;
    width: 100%;
    height: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: center; 
}
/*#endregion*/

/*#region Siguiente*/
.Siguiente{
    text-align: center;
}
/*#endregion*/

/*#region PiePagina*/
.PiePagina{
    background-color: #2B2020;
    color: white;
    text-align: center;
    width: 100%;
    height: 70px;
    margin: 5px;
}

.PiePagina p {
    padding-top: 15px;
}
/*#endregion*/

@media(min-width:500px) and (max-width:759px){   
    .Botones{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;            
    }

    .Botones a{
        width: 50%;        
        margin: 1px;
        text-align: center;
    }
}

@media(min-width:250px) and (max-width:499px){
    
    .Botones{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;            
    }

    .Botones a{
        width: 50%;        
        margin: 1px;
        text-align: center;
    }
}