@font-face {
    font-family: 'Fuente';
    src: url(../fonts/Minecraftia-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  /* ¡La clave! */
}

body{
    background-color: #D9D9D9;
    padding: 0px !important;
    margin: 0px !important;
}
.cabecera{
    background-color: #5170ff;
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0px;
    width: 100%;
    height: 60px;
    padding: 10px;
    padding-left: 20px;
    color: white;
}
.cabecera > p{
    font-size: 25px;
    margin: 0px;
}
.cabecera > a{
    color: black;
    background-color: white;
    padding: 10px;
    padding-bottom: 0%;
    padding-top: 6px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid black;
}
.cabecera > a:hover{
    color: #5170ff;
    background-color: #D9D9D9;
}
.contenido{
    width:auto;
    padding: 40px;
    padding-top: 100px;
}
table{
    width: 100%;
    height: 100vh;
}
.tabla-iframe{
    padding-top: 60px;
}
iframe{
    height: stretch;
}
.ptitulo{
    color: red;
    font-size: 30px;
    margin: 0px;
}
.pSinEspacio{
    font-family: 'Fuente';
    margin: 0%;
}
.div-imagen{
    position:static;
}
.imagen-conjunto{
    width: 300px;
    height: 400px;
    position: fixed;
    top: 150px;
    right: 50px;
}
.img-roki{
    width: 100px;
    height: 100px;
    position: fixed;
    top: 250px;
    right: 300px;
}
.img-pulpo{
    width: 150px;
    height: 150px;
    position: fixed;
    top: 100px;
    right: 100px;
}
.img-pantalla{
    width: 150px;
    height: 150px;
    position: fixed;
    top: 400px;
    right: 100px;
}
.img-control{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 400px;
    right: 30px;
}
.div-menu-cab{
    display: flex;
}
.hamburger{
    display: none; 
    font-size: 25px;
}
.td1{
    width: 20%;
}
.td2{
    height: 80%;
}

p{
    font-family: 'Fuente';
}
a{
    font-family: 'Fuente';
    color: #5170ff;
}
a:hover{
    color: #770893;
}

@media (max-width: 1000px){
    .img-roki{
        position: static;
    }
    .img-pulpo{
        position: static;
    }
    .img-pantalla{
        position: static;
    }
    .img-control{
        position: static;
    }
}


@media (max-width: 850px){
    .imagen-conjunto{
        width: 300px;
        height: 400px;
        position:static;
    }
    .hamburger{
        display: flex;
        padding-right: 15px;
        font-size: 25px;
    }
    .td1{
        width: 0%;
    }
    .td2{
        height: 100%;
    }
}

@media (max-width: 550px){
    .imagen-conjunto{
        width: 300px;
        height: 400px;
        position:static;
    }
}