body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  position: fixed;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
a{
    text-decoration:none;
    color:white;
}

#overlay{
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: black;
  font-weight: 100;
  color: red;
  text-transform: uppercase;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loadText{
  display: none;
}
#startButton{
	border: solid 1px  white;
	padding:10px;
	color: white;
	background-color: black;
	text-transform: uppercase;
}
#startButton:hover{
    color: red;
    border: solid 1px red;
}

.arrows{
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: flex;
	justify-content: end;
	align-items: flex-end;
	z-index: 100;
  }
  
  .arrow{
	background-color: white;
	padding: 14px;
	margin: 5px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all 0.5s;
  }
  
  .arrow-vertical{
	display: flex;
	flex-direction: column;
  }
  
  .arrow svg{
	color: #282c34;
	width: 15px !important;
	height: 15px;
  }
  .info{
    top:90px;
    width: 250px;
    padding:10px;
    /*border-radius: 25px;*/
}
#teclas{
    top: 90px;
}
#info {
    margin: auto 0;
	position: absolute;
	top: 20px;
	width: fit-content;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
	background-color: rgba(0, 0, 0, 0.6);
	border: solid 1px  rgba(255, 255, 255, 1);
	/*border-radius: 50px;*/
	
}
  .botoes{
	font-family: 'Roboto Mono', monospace;
	font-size: 0.8vw;
	position: absolute;
	top:20px;
	z-index: 2;
	border: solid 1px  rgba(255, 255, 255, 0.6);
	/*border-radius: 50px;*/
	padding:10px;
	color: rgba(255, 255, 255, 0.25);
	background-color: rgba(0, 0, 0, 0.6);
}
.botoes:hover {
    border: solid 1px  red;
    color: red;
}
.dir{
	right:3vw;
}
.esq{
	left:3vw;
}

.baixo {
    top: 90vh;
}

.meio{
    right:50%;margin: 0 auto 0 auto;
    color:grey;
    border: 2px solid grey;
    padding: 5px;
}

@media all and (max-width:1000px) {
.botoes{
     font-size: 3.3vw;
    }
.info {
    display: none;
}
}
@media all and (max-width:767px) {
.botoes{
     font-size: 3.3vw;
}
.info {
    display: none;
}
}
@media all and (max-width:568px) {
.botoes{
     font-size: 3.3vw;
}
.info {
    display: none;
}
}
