/* HOJA DE ESTILOS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Raleway', sans-serif;
}
header{
    width: 100%;
    height: 60px;
    background: rgba(100,100,100,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor{
    width: 98%;
    margin: auto;
}
.contenedor img{
    float: left;
}
header .contenedor{
    display: table;
}

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

section{
    width: 100%;
    margin-bottom: 25px;
}

/* CABECERA */
#textopdf img{
    position: relative;
    margin: 2%;
    margin-left: -2%;
    margin-top: 17%;
}
#textopdf h1{
    position: absolute;
    margin-top: 25%;
    margin-left: 30%;
    font-size: 25px;
}
#textopdf h2{
    position: absolute;
    margin-top: 29%;
    margin-left: 32%;
    font-size: 25px;
    color: firebrick;
}
#textopdf h3{
    position: absolute;
    margin-top: 34%;
    margin-left: 30%;
    font-size: 16px;
}
#textopdf h4{
    position: absolute;
    margin-top: 55%;
    margin-left: 5%;
    font-size: 13px;
    text-align: justify;
    width: 45%;
}
#textopdf h5{
    position: absolute;
    margin-top: 115.6%;
    margin-left: 52%;
    font-size: 13px;
    text-align: justify;
    width: 45%;
}
#imagen img{
    position: absolute;
    margin-top: 55%;
    margin-left: 18%;
}

@media (min-width:1024px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
        background: rgba(100,100,100,0.1);
    }
    .menu a{
        border: none;
        color: firebrick;
    }
    header label {
        display: none;
    }
    .contenedor{
        width: 1500px;
    }
    #textopdf img {
        width: 250px;
        height: 250px;
        margin-left: 17%;
        margin-top: 2%;
    }
    #textopdf h1{
        width: 1000px;
        margin-left: 28%;
        margin-top: 5%;
        font-size: 35px;
    }
    #textopdf h2{
        width: 1000px;
        margin-left: 29%;
        margin-top: 6.6%;
        font-size: 35px;
    }
    #textopdf h3{
        width: 1000px;
        margin-left: 28%;
        margin-top: 9%;
        font-size: 30px;
    }
    #textopdf h4{
        width: 300px;
        margin-left: 17%;
        margin-top: 16%;
        font-size: 15px;
    }
    #textopdf h5{
        width: 300px;
        margin-left: 35%;
        margin-top: 32%;
        font-size: 15px;
    }
    #imagen img{
        width: 300px;
        height: 380px;
        margin-left: 7%;
        margin-top: 12%;
    }
    }
