/* Copyright Vanguardia Digital 2023 © https://hostingwebec.com */

:root {
    --primario: #363533;
    --primarioOscuro: #c50d19;
    --yellow: #a41519;
    --celeste: #76d1ff;
    --blanco: #FFF;
    --negro: #0c161c;
    --gris: #808080;

    --fuentePrincipal: 'Righteous', cursive;
    --fuenteSecundaria: 'Teko', sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
*, *:before, *:after {
    box-sizing: inherit;
}

/* Globales */
body {
    background-color: var(--blanco);
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
}
p {
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blanco);
}  
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.contenedor {
max-width: 120rem;
margin: 0 auto;
}
h1{
    font-family: var(--fuentePrincipal);
    text-align: center;;
}
h2, h3, h4 {
    text-align: center;
    color: var(--primario);
    font-family: var(--fuenteSecundaria);
}
h1 {
    font-size: 4rem;
}
h2 {
    font-size: 3.2rem;
}
h3 {
    font-size: 2.4rem;
}
h4{
    font-size: 1.8rem;
}
/* Utilidades*/
.no-margin{
    margin: 0;
}
.no-padding{
    padding: 0;
}
.centrar-texto{
    text-align: center;
}

/*Header*/
header h2, h3{
    color: var(--blanco);
    background-color: var(--primario);
}
/*Fin header*/

/*Contenido*/
.logo_principal{
    width: 65%;
    margin: 0 auto;
    padding: 3rem 0;
}

section h1{
    padding: 3rem 0;
    font-size: 3rem;
    color: var(--yellow);
}
.dress_int{
    margin: 2rem 0;
}
.dress_int p{
    color: var(--negro);
    text-align: center;
    font-size: 1.6rem;
}
.dress_int h4{
    font-size: 2rem;
}

footer{
    background-color: var(--negro);
    margin-top: 8rem;
    text-align: center;
}
footer p{
    padding: 1rem;
    font-size: 1.2rem;
}
footer a{
    color: var(--yellow);
}
footer a:hover{
    color: var(--celeste);
    transition: all .9s;
}

/*medias*/
@media (min-width:680px) {
    header h2{
        padding-top: 3rem;
    }
    header h3{
        padding-bottom: 3rem;
    }
    .logo_principal{
        width: 50%;
    }
    .dress{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    footer{
        margin-top: 10rem;
    }
}

@media (min-width:1241px) {
    .logo_principal{
        margin: 0 auto;
        width: 60%;
        display: grid;
        justify-items: center;
    }
}

@media (min-width:1360px) {
    .logo_principal{
        margin: 0 auto;
        width: 60%;
        display: grid;
        justify-items: center;
    }
}

@media (min-width:1920px) {
    
    header h2, h3{
        font-size: 4rem;
    }
    .dress_int h4{
        font-size: 3rem;
    }
    .dress_int p{
        font-size: 2rem;
    }

    footer p{
        font-size: 1.4rem;
    }
}