
@font-face {
  font-family: 'Pixel Operator';
  src: url('./fonts/PixelOperator-Bold.woff2') format('woff2'),
      url('./fonts/PixelOperator-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body{
  height: 100vh;
  width: 100vw;
  background: url(./img/cenario.png) no-repeat;
  background-size: cover;
  margin: 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.crossword {
  padding:10px;
  /* margin: 10px auto; */
  overflow: hidden;
}

.grid {
  background: url(./img/box.png) no-repeat;
  background-size: contain;
  padding: 10px;
}

.row {
  clear: left;
  white-space: nowrap;
}

.row > div {
  position: relative;
  padding: 0;
  float: left;
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 11px;
  border: 2px solid #fff;
  background-color: #d8d8d8;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.row > div.word {
  background-color: rgba(255,88,0,.8);
}
.row > div.word.active {
  background-color: rgba(255,88,0,1);
}

.num {
  font-family: 'Pixel Operator', Arial, Helvetica, sans-serif;
  font-size: 40px;
  float:left;
  position: relative;
  left: 5px;
  top: 3px;
  color: #000;
  opacity: .2;
}
.tempo{
  font-family: 'Pixel Operator', Arial, Helvetica, sans-serif;
  font-size: 30px;
  position: absolute;
  bottom: 210px;
  right: 80px;
  color: #fff;
}
#ranking{
  position: relative;
}
#ranking .texto{
  font-family: 'Pixel Operator', Arial, Helvetica, sans-serif;
  font-size: 38px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #000;
  text-align: center;
}
#ranking .texto .first{
  color: #ff6700;
  font-size: 60px;
}
#ranking h1{
  font-size: 38px;
}
#ranking .btn-cta{
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0;
  text-align: center;
}
.letter {
  font-family: 'Pixel Operator', Arial, Helvetica, sans-serif;
  font-size: 40px;
  position: relative;
  top: 3px;
  left: 5px;
  white-space: normal;
  color: #000;
}
.correct .letter {
  color: green;
}
.incorrect .letter {
  color: red;
}
 
.row > div.blank {
  background-color: #9e9e9e;
}

.clues {
  font-family: 'Poppins', sans-serif;  color: #fff;
  display: flex;
  position: absolute;
  top: 315px;
  left: 40px;
  z-index: -1;
  background: url(./img/bluebox.png) no-repeat;
  background-size: contain;
}

.clues .across, .clues .down {
  color: #fff;
}
.clues h4 {
  font-size: 32px;
  margin: 60px 0 0px;
  padding-left: 14px;
  font-weight: bold;
  font-family: 'Pixel Operator';
}
.clues div {
  margin: 4px 0;
  padding: 10px 0;
  overflow: auto;
}
.clues p {
  font-size: 12px;
  padding: 5px 14px;
  margin: 0 0 5px;
  cursor: default;
  position: relative;
}
.clues .horizontal{
  margin-right: 15px;
  width: 365px;
}
.clues .vertical{
  width: 365px;
}
.active_clue {
  background-color: #000;
}

.controls {
  margin: 10px 0;
  position: absolute;
  bottom: 90px;
  right: 90px;
}

/* CSSButtonGenerator.com */
.controls button {
	
	background-color:transparent;
	
	border:0px solid transparent;
	display:inline-block;
	
	padding:5px 15px;
	text-decoration:none;
  z-index: 3;
  position: relative;
  bottom: 15px;
}
.controls button:hover {
	
}
.controls button:active {
	
}

