body{
  margin: 0;
  background-image: url(images/ep_naturalblack.png);
}
.titulo{
  background-color: #1196FF;
  display: flex;
  position: relative;
  color: white;
  align-items: center;
  height: auto;
  flex-direction: column;
}

h1{
  padding-top: 10px;
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 55px;
  margin: 0 auto;
}

h2{
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
}

hr {
  margin: 0px;
  color: white;
  border-width: initial;
  border-style: solid;
}

.Tablero{
  width: 500px;
  height: 500px;
  margin: 6% auto;
  position: relative;
}

.fila{
  display: flex;
  justify-content: space-between;
}

#barra_vertical{
  position: relative;
  float:left;
  border-left: 2px solid white;
  width:1px;
  height:162px;
  border-width: thick;
}

.pieza{
  color: white;
  width: 166px;
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.turnos{
  color: lightskyblue;
  font-size: 39px;
  font-family: 'Rubik Mono One', sans-serif;
  position: absolute;
  top: 359px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.turno1{
  left: 50px;
}

.turno2{
  right: 50px;
}

@media screen and (max-width: 960px) {
  .turnos{
  font-size: 35px;
 }
 .turno1{
   left: 20px;
 }
.turno2{
  right: 20px;
}
}

@media screen and (max-width: 850px) {
  .turnos{
    top: 120px;
    display: inline-flex;
    font-size: 30px;
  }
  .Tablero{
    padding-top: 60px
  }
}

@media screen and (max-width: 530px) {
  h1{
    font-size: 33px;
  }
  .turnos{
    top: 91px;
    font-size: 20px;
  }
  .Tablero{
    padding-top: 40px;
    width: 340px;
  }
  #barra_vertical{
    height: 115px;
  }
  .pieza{
    width: 109px;
    font-size: 93px;
  }
}

@media screen and (max-width: 340px) {
  h1{
    font-size:20px;
  }
  .turnos {
    top: 75px;
    font-size: 16px;
  }
  .Tablero{
    width: 250px;
  }
  #barra_vertical{
    height: 80px;
  }
  .pieza{
    font-size: 64px;
  }
}
