/**
 * @copyright Fresh To Go
 * @author Nucliux (edoardo@nucliux.mx)
 * @version 1.0.0a (Diciembre 2023)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css?v=1.0.0a";
@import "inicio.css";
@import "nosotros.css";
@import "productos.css";
@import "clientes.css?v=1.0.0a";
@import "contacto.css";
@import "footer.css?v=1.0.0a";

@import "animate.min.css";

/*Tipografías*/
@import url('https://fonts.googleapis.com/css2?family=Orelega+One&display=swap');

@font-face{
	src: url("fonts/HeadlinerNo45-Regular.ttf");
	font-family: "HeadlinerNo45";
	font-weight: 400;
}

/*Página*/
html,body{
    background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	color: #000076;
	font-family: 'Orelega One', serif;
	font-weight: 400;
	font-size: 1.2vw;
	line-height: 1.7vw;
}

h1{
    color: #48BADA;
	font-family: "HeadlinerNo45";
    font-weight: 400;
    font-size: 4vw;
    line-height: 4.5vw;
}

h2{
    color: #48BADA;
    font-weight: 400;
    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: 5vw;
        line-height: 5.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: 6.5vw;
        line-height: 7.5vw;
    }
    
    h2{
        font-size: 4.5vw;
        line-height: 5.5vw;
    }
}
