/*=======================
ESTILO GENERAL, PLANTILLA
=======================*/

/*================
RESET DE DOCUMENTO
================*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body{
    background: #858585;
    display: flex;
    justify-content: center;
}

/*===============
CONTENIDO GENERAL
===============*/

.contenido-general{    
    display: flex;
    flex-direction: column;
    width: 1366px;
    background: white;
    border-left: 5px solid #333333;
    border-right: 5px solid #333333;
}

/*=======
CONTENIDO
=======*/

.contenido{
    width: 100%; 
    background: white;
}

/*========
RESPONSIVO
========*/

/*= 1400px =*/
@media (max-width:1400px){

    .contenido-general{    
        display: flex;
        flex-direction: column;
        width: 100%;
        
        border-left: 0px; 
        border-right: 0px; 
    }
}











