:root {
    --clr-dark: #0f172a;
    --clr-light:#829db7;
    --clr-accent:#e11d48;

}

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

html, body{
    height: 100vh;
    margin: 0;         
}

body{
    margin: 0;
    line-height: 1.6; 
    word-spacing: 1.4px;
    font-family: 'Roboto', sans-serif;
    color: var(--clr-dark);
    height: 100%;
    

}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cae0d0;
    height: 20%;
}

.titulo{
    display: flex;
    justify-content: center;
    flex-grow: 1;
}
.titulo2{
    display: none;
}
h1{
    font-weight: 300;
    font-size: 2.5rem;
}
.logo{
    height:90px ;
    margin-right: 10px;

}
/* -----------------------------------------------------main-------------------------- */
main{
    height: 70%;
    display: flex;
    justify-content: center;
    background-image: url(/img/arte/background_image.jpg);
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;

}

.container{
    background-color: rgba(191, 189, 189, 0.96);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
    border: 1em; 
    border-radius: 10px;
    height: 150px;
    padding: min(1em, 4%);
    margin-right: 10px;
    width: 150px;
    text-align: center;
}

section .gif{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;

}
section .svg-icon{
    width: 40px;
}
/* -----------------------------------------------------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){

html, body{
    height: auto;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #cae0d0;
    height: auto;
}
.titulo{
    display: none;
}

.titulo2{
    display: flex;
    order: 1;
}
h1{
    font-weight: 300;
    font-size: 1.5rem;
}
main{
    height: 100%;
    background-color: #c0c9ae; 
    background-image: none;
}
section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90%;
}
.container{
    margin: 10px;
}



}