*{
    margin: 0;
    border: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body{
    background-color: #eee;
}
header{
    background-color:#000000e1;
    box-shadow: 0px 5px 15px #000000e1;
    color: #f6f6f6;
    text-align: center;
    width: 100%;
    position: fixed;
    padding: 10px 0 10px;
    z-index: 1;
}
header h1{
    text-align: center;
    font-family: Tahoma;
    font-size: 2.5rem;
    padding: 10px 0 5px;
    margin: 0 20px;
}
header a{
    color: #f6f6f6;
    font-family: Tahoma;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 5px;
    transition: all 150ms;
}
header a:hover{
    color: #00acb7;
    text-decoration: underline;
}
.container{
    background-color: #f6f6f6;
    width: 90%;
    padding: 15px;
    margin: 45px auto 0;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #dddddd;
    text-align: center;
}
.container h1{
    font-family: Tahoma;
    font-size: 3rem;
    text-align: Center;
    font-weight: bold;
    padding: 0 0 20px;
}
.container h2{
    font-family: Tahoma;
    font-size: 2rem;
    text-align: Center;
    font-weight: bold;
    padding: 0 0 20px;
}
div.YT{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
div.YT > iframe{
    width: 100%;
}
/* Grid */
.grid{
    margin-bottom: 20px;
    display: grid;
    gap: 20px;
    grid-template-areas:
    'chilli'
    'revista'
    'video';
}
@media (min-width: 600px) {
    .grid {
        grid-template-areas:
        'chilli chilli chilli video video'
        'revista revista revista video video';
    }
}
.grid img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
/* .grid iframe{
    max-width: 50rem;
    height: 50rem;
    margin: 0;
} */
.chilli{
    transition: all 150ms;
    grid-area: chilli;
}
.revista{
    transition: all 150ms;
    grid-area: revista;
}
.video{
    transition: all 150ms;
    grid-area: video;
}
.chilli:hover{
    transform: scale(1.1)
} 
.video:hover{
    transform: scale(1.1)
}
.revista:hover{
    transform: scale(1.1)
}
/* Footer */
footer{
    background-color: #000;
    color: #fefefe;
    padding: 10px 10px 15px;
    font-family: Tahoma;
    text-align: center;
    max-width: 100%;
}
footer h3{
    font-size: 1.8rem;
}
footer h4{
    font-size: 1.6rem;
    padding: 2px 0 10px;
}
footer h6{
    font-size: 1.2rem;
    padding-bottom: 2px;
}