* {
  padding: 0px;
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: gray;
}
/************CONTENEDOR PRINCIPAL *********************/
.contenedor {
  position: relative;
  width: 1100px;
  height: 600px;
  margin: 2rem auto;
  background-color: aqua;
  overflow: hidden;
}

/***************CONTENEDOR PARA LA PORTADA ****************/
.portada {
  width: 100%;
  height: 100%;
  background-image: url("imagenes/Portada.png");
  background-size: cover;
}
.btn-jugar {
  position: absolute;
  width: 150px;
  height: 200px;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}

/********************CONTENEDOR PARA INTERFAZ DEL JUEGO ************/
.contenedor-juego {
  width: 100%;
  height: 100%;
  background-image: url("imagenes/Fondo.png");
  background-size: cover;
  background-position: center;
}
/*************** MENU SUPERIOR INSTRUCCIONES ******************/
.menu-superior {
  width: 490px;
  height: 200px;
  position: absolute;
  right: 75px;
  top: 20px;
  background-image: url("imagenes/MenuSuperior/instrucciones1.png");
  background-size: cover;
  background-position: center;
}
.menu-siguiente {
  position: absolute;
  width: 100px;
  height: 30px;
  bottom: 0px;
  right: 150px;
  background-image: url("imagenes/MenuSuperior/Botones/boton-siguiente.png");
  background-position: bottom;
  background-repeat: no-repeat;
  cursor: pointer;
}
.menu-siguiente:hover {
  background-image: url("imagenes/MenuSuperior/Botones/boton-siguiente2.png");
}
.menu-jugar {
  position: absolute;
  width: 90px;
  height: 30px;
  bottom: 0px;
  right: 80px;
  background-image: url("imagenes/MenuSuperior/Botones/boton-jugar.png");
  background-position: bottom;
  background-repeat: no-repeat;
  cursor: pointer;
}
.menu-jugar:hover {
  background-image: url("imagenes/MenuSuperior/Botones/boton-jugar2.png");
}

/**************** MENU OPCIONES *****************/
.menu-opciones {
  width: 490px;
  height: 350px;
  position: absolute;
  bottom: 10px;
  right: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.definicion1,
.definicion2,
.definicion3,
.definicion4 {
  width: 90%;
}
.conceptos,
.definiciones {
  display: flex;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
/****************IMAGEN CONTADOR ***************/
.img-contador {
  position: absolute;
  width: 390px;
  height: 220px;
  bottom: -38px;
  left: 47px;
}
/* ********CLASES UTILITARIAS */
.none {
  display: none;
}
