/* HOJA DE ESTILOS */
*{
    margin: center;
    padding: center;
    box-sizing: border-box;
}

body{
    font-family: 'Raleway', sans-serif;
}
header{
    width: 21.2%;
    height: 45px;
    background: #333;
    color: white;
}
.contenedor{
    width: 98%;
    margin: auto;
}
header .contenedor{
    display: table;
}

/* MENU */
#menu-bar{
    display: none;
}
header label{
    float: right;
    font-size: 25px;
    margin: 6px 0;
    cursor: pointer;
}
.menu{
    margin: 8px;
    position: absolute;
    top: 43px;
    left: 0;
    width: 21%;
    height: 72vh;
    background: rgba(51,51,51,0.9);
    transition: all 0.5s;
    transform: translateX(-150%);
    z-index: 100;
}
.menu a{
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}
.menu a:hover{
    background: rgba(255,255,255,0.5);
}
#menu-bar:checked ~ .menu{
    transform: translateX(0%);
}

/* CABECERA */
#textopdf img{
    margin: -1%;
    margin-left: -2%;
}
#textopdf h1{
    margin: 5%;
    margin-top: -5.5%;
    font-size: 25px;
}
#textopdf h2{
    margin: 6%;
    margin-top: -5.7%;
    font-size: 25px;
    color: firebrick;
}
#textopdf h3{
    margin: 5.3%;
    margin-top: -6.4%;
    font-size: 16px;
}
#textopdf h4{
    margin: -0.5%;
    margin-top: -3%;
    font-size: 13px;
    text-align: justify;
    width: 10%;
}
#textopdf h5{
    margin: 10%;
    margin-top: -14.5%;
    font-size: 13px;
    text-align: justify;
    width: 10%;
}
#imagen img{
    margin: 25%;
    margin-top: -41.6%;
    margin-left: 10.5%;
}