@import url('https://fonts.googleapis.com/css2? family= Ibarra+Real+Nova:wght@400;600 & family= Playfair+Display:wght@500 & display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Ibarra Real Nova', serif;
}
header{
    width: 100%;
    padding: 20px;
    color: white;
    text-align: center;
    background: rgb(5, 5, 5);
}

.contenedor-general-titulo{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 200px;
    /*background-color: black;*/
    color: white;
    justify-content: space-evenly;
    justify-items: center;
    margin-bottom: 3em;
    margin-top: 2em;
}
.contenedor-img img{
   max-width: 100%;
   max-height: 150%;
}
.conteiner-title{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.title-principal{
    font-size: 90px;
    font-weight: 600;
    font-family: 'Ibarra Real Nova', serif;
    text-align: center;
}
nav ul{
    list-style: none;
    /*background: rgb(0, 0, 0);*/
}

nav ul li{
    display: inline-block;
    padding: 20px;
    transition: all ease-in-out 250ms ;

}
ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
nav ul li :hover{
    background: #0eaa4f;
    color: black;
}
.hide{
    width: 100%;
    font-size: 30px;
    padding: 20px;
    background: rgb(4, 62, 20);
    color: white;
    cursor: pointer;
    display: none;
}

.show{
    display: block;
}


@media (min-width:359px) and (max-width:767px) {
    ul li{
        width: 100%;
        padding: 16px;
        text-align: center;
    }
    .navbar{
        display: none;
        z-index: 50;
    }
    .hide{
        display: block;
    }
    .title-principal{
        font-size: 40px;
        font-weight: 600;
        text-decoration: solid;
        margin-bottom: 2em;
        margin-top: 2em;
    }
    .contenedor-img img{
        width: 200px;
        max-height: 100%;
    }
}
@media (min-width:768px) and (max-width:1062px){
    ul li{
        width: 100%;
        padding: 16px;
        text-align: center;
    }
    .navbar{
        display: none;
        z-index: 50;
    }
    .hide{
        display: block;
    }
    .title-principal{
        font-size: 40px;
        font-weight: 600;
        text-decoration: solid;
        margin-bottom: 2em;
        margin-top: 2em;
    }
    .contenedor-img img{
        width: 300px;
        max-height: 100%;
    }
   
}