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;
}
#startButton{
	border: solid 1px  black;
	/*border-radius: 50px;*/
	padding:10px;
	color: black;
	background-color: grey;
	text-transform: uppercase;
}
#startButton:hover{
    color: red;
    border: solid 1px red;
}


#overlay{
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: grey;
  font-weight: 100;
  color: black;
  text-transform: uppercase;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loadText{
  display: none;
}

.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;
  }
  .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.25);
	/*border-radius: 50px;*/
	padding:10px;
	color: rgba(255, 255, 255, 0.25);
	background-color: rgba(0, 0, 0, 0.25);
}
.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;
    }
}
@media all and (max-width:767px) {
.botoes{
     font-size: 3.3vw;
}
}
@media all and (max-width:568px) {
.botoes{
     font-size: 3.3vw;
}
}
