
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} 

html, body{
    height: 100vh;
    margin: 0;         
}
body{
    background-color: #c0c9ae; 
}



/* -------------------------------------MAIN----------------------------------- */
main{
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;

}
section{
    width: 90%;
}


.container{
    padding: min(1em, 4%);
    width: 100%;
    background-color: rgba(191, 189, 189, 0.88);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
    border: 1em; 
    border-radius: 10px;
}
.formato{
    text-align: justify;
    font-size: 1.5rem;
}
.formato .svg-icon{
    width: 13px;
}
h2{
    font-family: 'Open Sans', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-style: Light;
    font-weight: 300;
}




/* --------------------------------------Footer------------------------------ */

footer{
    text-align: center;
    background-color: #cae0d0;
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
}
footer img{
    width: 40px;
}

.pie_de_pagina{
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: italic;
    color: #f6b62f;
}

.item-1{
    padding-left: 10px;
}
.item-2{
    flex-grow: 1;
}


/* ----------------------------Media Q---------------------- */

@media screen and (max-width: 425px){

header{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
}
.item-0{
    display: flex;
    margin: 10px;
}
.item-titulo{
    padding: 10px 0 10px 0;
}
.item-titulo h1{
    font-size: 3rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
main{
    height: auto;
    padding: 10px 0 10px 0;
}

section{
    width: 90%;
}
footer{
    height: auto;
    padding: 10px 0 10px 0;
}

.pulpo{
    display: none;
}
.container{
    width: 100%;
}


}