/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
  body{
    font-size: 62.5%;
    background-image: url(../sprites/bg_1.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: 'Fredoka One', cursive;
  }
h1{
    font-size: 2.5rem;
}
h3{
    font-size: 1.8rem;
}
h1,h2,h3{
    color: #fff;
    text-align: center;
}
li{
    color: #f17222;
    font-size: 1.5rem;
}
li > span{
    color: #5e1eff;
}
p{
    color: #fff;
    font-size: 1.2rem;
}
.contenedor_instrucciones{
     background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 1200px;
    max-height: 700px;
    overflow: hidden;
    overflow-y: scroll;
}
.instrucciones{
   
}
.instrucciones::-webkit-scrollbar{
    display:none;
}
.contendor_instrucciones{
    position: relative;
}
.btnEmpezar{
    display: flex;
    justify-content: center;
    align-items: center;
}
#btnEmpezar{
    width: 100%;
}