* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-size: 1.2rem;
    min-height: 100%;
}

.contenedorWeb>* {
    border-radius: 0.4em;
    padding: 0.4em;
    /* text-align: center; */
    box-shadow: -0.01em 0.01em 0.1em 0 rgb(0, 0, 0);
}

.calendar h2{
    text-align: center;
}


.main {
    grid-area: main;
}

.header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-area: header;
    justify-items: center;
    align-items: center;
    
    background-color: rgb(57, 148, 118);

}

.contenedorWeb {
    display: grid;

    grid-template:
        "header" 100px
        "navbar" 100px
        "main" auto
        "calendar" auto
        "footer" 200px /
        1fr;

    height: 100%;
    width: 100%;
}

.logo img {

    height: 80px;
}

.logocss img {

    height: 80px;
}

.imagenMain img{
    height: 30vh;
}

.titulo {
    color: white;
    font-size: 40px;
    text-align: center;
}

.footer {
    grid-area: footer;
    display: grid;
    /* height: 280px; */
    grid-template:
        "fottertexto fottertexto twitter instagram" 1fr
        "fottertexto fottertexto twitch linkedin" 1fr/
        /* "instagram twitter twitch linkedin" 1fr/ */
        1fr 1fr 1fr 1fr;
    background-color: rgb(63, 0, 63);
    justify-items: center;



}

img {
    filter: drop-shadow(5px 5px 5px white);
}



a img {
    filter: drop-shadow(5px 5px 5px black);
}

.instagram {
    grid-area: instagram;
    align-self: center;
}

.twitter {
    grid-area: twitter;
    align-self: center;
}

.twitch {
    grid-area: twitch;
    align-self: center;
}

.linkedin {
    grid-area: linkedin;
    align-self: center;
}

.fottertexto {
    grid-area: fottertexto;
    color: white;
    justify-self: start;
    align-self: center;
}

.calendar{
    grid-area: calendar;
    background-color: lightgreen;
}

.main {
    display: grid;
    grid-template:
        "main" auto/
        1fr;
    justify-items: center;
    /* overflow: scroll; */



}

.footer img {
    height: 2em;
}

.navbar{
    background-color: grey;
    
}

.menu {
    position: fixed;
    flex-direction: column;
    left: 0;
    top: 0;
    width: 100%;
    align-items: center;
    background-color: teal;
    height: 100%;
    /* Definimos un scroll */
    overflow: auto;
    /* Para que se vea el menú opacity a 0 */
    opacity: 0;
    /* el menú se verá cuando le demos clic al botón */
    pointer-events: none;
    z-index: 2;

}

.menu li {
    padding: 0;

}

.menu a {
    color: var(--color-texto-inverso);
    font-size: 20px;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    text-decoration: none;
    filter: drop-shadow(5px 5px 5px );

}
.abrir-menu, .cerrar-menu{
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    
}

.cerrar-menu{
    align-self: flex-end;
    padding: 19px 7px;
    
}

.menu_abierto{
    opacity: 1;
    pointer-events: all;   

}
.menu {

    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    
    
}


img{
height: 100px;
}










@media (min-width: 600px) {

    .contenedorWeb {
        display: grid;

        grid-template:
            "header header" 100px
            "navbar main" 300px
            "calendar main" auto
            "footer footer" 200px /
            200px auto;

        height: 100%;
        width: 100%;
    }

    .navbar {
        display: flex;
        
        /* justify-content: space-between;
        padding: 18px;
        max-width: 900px;
        margin: 0 auto; */
        
        
    }




    .menu {
        position: relative;
        flex-direction: column;
        /* left: 0; */
        /* top: 0; */
        height: 100%;
        /* width: 100%; */
        
        /* align-items: center; */
        background-color: grey;
        /* height: 100%; */
        /* Definimos un scroll */
        /* overflow: auto; */
        /* Para que se vea el menú opacity a 0 */
        opacity: 1;
        /* el menú se verá cuando le demos clic al botón */
        pointer-events: all;
        color: white;
        
        
    
    }
    
    .menu li {
        padding: 0 15px;
        
        
    
    }
    
    .menu a {
        color: var(--color-texto);
        font-size: 20px;
        font-weight: 500;
        line-height: 50px;
        text-transform: uppercase;
        
    }

    .abrir-menu, .cerrar-menu{
        display: none;
        
    }



}

@media (min-width: 900px) {

    .contenedorWeb {
        display: grid;

        grid-template:
            "header header header" 100px
            "navbar main calendar" auto
            "footer footer footer" 150px /
            200px auto 200px;

        height: 100%;
        width: 100%;
    }

   

}