/*cuando reproduce el audio no muestra el iframe, para no llenar la pantalla de iframe*/
iframe
{
	display:none;
}

body{
  width: 100%;
  justify-content: center;
  align-items: center;
}

/*área de juego*/
.contenido
{
    padding: 0px;
    margin: auto;
    width: 930px;
    height: 630px;
    background-image: url("../img/fondoPrincipal.png");
    background-size: 930px 630px;
  display: flex;
  justify-content: center;
  align-items: center;
    left: 20%;
  position: absolute;
  
}

.parteIzquierda{
  position: absolute;
  width: 200px;
  height: 630px;  
  top: 0%;
  left: 0%;

}

.efecto img:hover {

  transform: scale(0.9);
  -ms-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -o-transform: scale(0.9);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;

}

#imgBoton{
  position: absolute;
  top: 73%;
  left: 5.5%;
  width: 160px;
  height: 70px;

}

#imgBocina{
  position: absolute;
  top: 56%;
  left: 26%;
  width: 110px;
  height: 110px;
}

#btnPresentaciones{position: absolute; top: 20%; left: 1%; font-weight: bolder;}
      
#btnAudiencia{position: absolute; top: 25%; left:30%; font-weight: bolder;}
#btnArchivos{position: absolute; top: 30%; left: 0%; font-weight: bolder;}
#btnTarjeta{position: absolute; top: 37%; left: 20%; font-weight: bolder;}
#btnEfectos{position: absolute; top: 42%; left: 14%; font-weight: bolder;}
.parteIzquierda button:hover{
  background-color: red;
  cursor: pointer;
}

#campouno{
  height: 100px;
}
#btnFrase1{
  position: absolute;
  top: 10%;
  left: 30%;
  background-color: #32E8D6;
  border-color: transparent;
  font-size: 30px;
  font-weight: bolder;
  font-style: italic;
  color: #FFFFFF;
  display: none;
}


#btnFrase2{
  width: 600px;
  height: 500px;
  background-color: transparent;
  border-color: transparent;
  position: absolute;
  top:0%;
  left: 28%;
  color: #000000;
  white-space: normal;
  font-size: 25px;
  font-weight: bolder;
  font-style: italic;
  text-shadow: 0em 0em #333;
  text-align: left;
display: none;
}


/*Hoja de estilo para la sopa de letras*/
#sopaDeLetras{
  display: none;
}

p {
  font: 22pt sans-serif;
  margin: 20px 20px 0px 20px;
}

/**
* Styles for the puzzle
*/
#puzzle {
  border: 1px solid black;
  position: absolute;
  left: 14.3%;
  top: 15%;
  float: left;
  margin: 30px 20px;
}

#puzzle div {
  width: 100%;
  margin: 0 auto;
}

/* style for each square in the puzzle */
#puzzle .puzzleSquare {
  height: 30px;
  width: 30px;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  font: 1em sans-serif;
}

button::-moz-focus-inner {
  border: 0;
}

/* indicates when a square has been selected */
#puzzle .selected {
  background-color: orange;
}

/* indicates that the square is part of a word that has been found */ 
#puzzle .found {
  background-color: blue;
  color: white;
}

#puzzle .solved {
  background-color: purple;
  color: white;
}

/* indicates that all words have been found */
#puzzle .complete {
  background-color: green;
}

#imgFelicidades{
  display: none
}
/**
* Styles for the word list
*/
#words {
  padding-top: 20px;
  -moz-column-count: 1;
  -moz-column-gap: 20px;
  -webkit-column-count: 1;
  -webkit-column-gap: 20px;
  column-count: 1;
  column-gap: 20px;
  width: 300px;
  position: absolute;
  left: 69%;
  top: 20%;

}

#words ul {
  list-style-type: none;
}

#words li {
  padding: 3px 0;
  font: 1em sans-serif;
  font-style: italic;
  font-weight: bolder;
  font-size: 20px;
}

/* indicates that the word has been found */
#words .wordFound {
  text-decoration: line-through;
  color: gray;
}

/**
* Styles for the button
*/
#solve {
  margin: 0 30px;
}
