/**
 * @copyright CEPRODAM
 * @author Nucliux Solutions (edoardo@nucliux.mx)
 * @version 1.0.0 (Junio 2025)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "nosotros.css";
@import "mision.css";
@import "campos.css";
@import "contacto.css";

@import "animate.min.css";

/*Página*/
html,body{
    background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	color: #131C4E;
    font-family: Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
	font-size: 1.2vw;
	line-height: 1.7vw;
}

h1{
    color: #FFFFFF;
	font-weight: 700;
	font-size: 2.5vw;
    line-height: 3.5vw;
}

h2{
	font-weight: 700;
	font-size: 2vw;
    line-height: 2.5vw;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html,body{
        font-size: 2.5vw;
        line-height: 3vw;
    }
    
    h1{
        font-size: 3.5vw;
        line-height: 4.5vw;
    }

    h2{
        font-size: 3vw;
        line-height: 3.5vw;
    }
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
	html,body{
        font-size: 4vw;
        line-height: 5vw;
    }
    
    h1{
        font-size: 5vw;
        line-height: 6vw;
    }

    h2{
        font-size: 4.5vw;
        line-height: 5.5vw;
    }
}
