/* 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;
}

/* CARATULA */
#pdf img{
    position: relative;
    margin-top: -8%;
}
#pdf h1{
    position: absolute;
    margin-left: 5%;
    margin-top: 95%;
    font-size: 80px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-style: thin;
}
#pdf h2{
    position: absolute;
    margin: 5%;
    margin-top: 112%;
    font-size: 80px;
    color: black;
    font-family: 'Raleway', sans-serif;
    font-style: thin;
}
#pdf h3{
    position: absolute;
    margin: 4%;
    margin-top: 126%;
    font-size: 80px;
    color: rgba(110,10,10,10);
    font-family: 'Raleway', sans-serif;
    font-style: thin;
}
#pdf h4{
    position: absolute;
    margin: 5%;
    margin-top: 145%;
    font-size: 72px;
    color: black;
    font-family: 'Raleway', sans-serif;
    font-style: bold;
}
#pdf h5{
    position: absolute;
    margin: 5%;
    margin-top: 160%;
    font-size: 50px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-style: bold;
}

@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;
    }
    #pdf img {
        width: 1000px;
        margin-left: 17%;
        margin-top: -3%;
    }
    #pdf h1{
        width: 1000px;
        margin-left: 20%;
        margin-top: 22%;
        font-size: 95px;
    }
    #pdf h2{
        width: 1000px;
        margin-left: 20%;
        margin-top: 27%;
        font-size: 95px;
    }
    #pdf h3{
        width: 1000px;
        margin-left: 20%;
        margin-top: 32%;
        font-size: 95px;
    }
    #pdf h4{
        width: 1000px;
        margin-left: 20%;
        margin-top: 38%;
        font-size: 95px;
    }
    #pdf h5{
        width: 1000px;
        margin-left: 20%;
        margin-top: 43%;
        font-size: 95px;
    }
    }