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

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

/* ------------------------------------Header---------------------------------------- */
header{
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: flex-end;
    height: 30%;

}
header h1{
    font-family: 'Barrio', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(1.8rem, 10vw, 9rem);
    text-shadow:  2px 4px #b0b02d;
}

/* This only changes this particular animation duration */
.animate__animated.animate__bounce {
  --animate-duration: 2s;
}

/* This changes all the animations globally */
:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

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

}
.item-0{ 
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.item-0 p{
    font-family: 'Open Sans', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
    font-style: Light;
    font-weight: 400;
    font-style: italic;
}

.item img{
    width: 90px;
} 
.item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(191, 189, 189, 0.96);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
    border-radius: 10px;
    padding: min(1em, 4%);
    text-align: center;
    width: 200px;
    height: 200px;
}

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


footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    text-align: center;
    background-color: #14e1e8;
    width: 100%;
    height: 10%;

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

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

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

header{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.item-0{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px;
}

.item{
    margin:10px;
}

main{
    height: auto;
    padding: 10px 0 10px 0;
}


footer{
    height: auto;
    padding: 10px 0 10px 0;
}



}