*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

main{
    width: 100%;
    height: auto;
    background: none;
    position: absolute;
}

.content-all{
    width: 100%;
    max-width: 1000px;
    background: none;
    margin: auto;
    margin-top: 80px;
   
}

header{
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    background: #2D3E50;
}

#check{
    display: none;
}

#check:checked ~ .menu{
    width: 400px;
}

.menu{
    position: fixed;
    top: 60px;
    width: 0px;
    height: 100vh;
    background: #2D3E50;
    transition: all 500ms cubic-bezier(1,0,0,1);
    transition-timing-function: cubic-bezier(1,0,0,1);
    overflow: hidden;
}
.menu li{
    list-style: none;
    padding: 16px;
    color: blanchedalmond;
    cursor: pointer;
    transition: all 300ms;
    display: block;
    width: 400px;
    background-color: darkgray;
}

.menu li:hover{
    background: rgba(0,0,0,0.2);
}

article{
    padding: 40px;
}

.content-all label{
    position: fixed;
    width: 100%;
    max-width: 1000px;
    top: 14px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.content-all h2{
    position: fixed;
    width: 100%;
    max-width: 1000px;
    top: 10px;
    font-family: serif;
    src: url(Hundo.ttf);
    font-size:25px;
    text-align: right;
    color:white;
}


.content-all img{
    background: white;
    width: 100%;
    height: 20%;
   
  
    
}
article h1{
    font-size: 30px;
    color: white;
    font-weight: 100;
    margin-top: 20px;
}

article .parrafo1{
    font-size: 20px;
    color: white;
    margin-top: 40px;
    letter-spacing: 2px;
}

article video{
    width: 100%;
  
    margin-top: 40px;
}

article .parrafo2{
    font-size: 20px;
    color: white;
    margin-top: 40px;
    letter-spacing: 1px;
}








