@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(rgba(27, 26, 26, 0.75), rgba(49, 49, 49, 0.4)), url('../images/chinchin.jpg');
    background-size: cover;
}

.hero {
    padding-left: 20%;
    padding-right: 20%;
    margin: auto;
    color: white;
}

/* Hero responsivo */
@media(max-width: 900px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 10vh;
    }
}

.hero p{
    margin-bottom: 1rem;
}


/* Informacion */
.container-informacion {
    text-align: center;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 10%;
    padding-right: 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    justify-content: center;
    /* height: 40vh; */
}

/* Containers informacion responsivos */
@media (max-width: 900px) {
    .container-informacion {
        grid-template-columns: 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 1rem;
    }

    .img-informacion {
        order: 1;
    }

    .container-texto {
        order: 2;
    }
}

.container-texto {
    text-align: left;
}



.container-informacion img {
    display: block;
    margin: auto;
    max-height: 90%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}


.container-informacion h2 {
    color: grey;
    font-size: 1rem;
}

.container-par {
    background-color: #e5e5f780;
    opacity: 0.8;
    background-image: radial-gradient(var(--azul) 0.6px, transparent 0.8px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
}

.container-impar {
    background-color: var(--azul-osc);
    color: var(--blanco);
}

.container-informacion video{
    display: block;
    margin: auto;
    max-height: 90%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Stats */

.stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: 2em;
}

.stats article {
    border: 1px dashed #fff;
    border-radius: 5px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* max-width: 200px; */
    width: 100px;
    height: 125px;
}

.stat h5 {
    font-size: medium;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
}

/* Ponemos los iconos blancos */
.stats img{
    filter: invert(1);
}