

:root{
	
	--darkgrey: #545454;
	--lightgrey: #A9A9A9;
	
}

.container{
	
	width: 100%;
	height: 97.5vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	
}

.back{
  
  position: fixed;
  top: 10px;
  left: 10px;
  border: solid 3px white;
  outline: solid 3px var(--lightgrey);
  border-radius: 4px;
	background-color: white;
	color: var(--lightgrey);
  box-shadow: 0px 6px 0px var(--lightgrey);
  padding: 10px 5px;  
  font-size: 30px;
  font-weight: bold;
  font-family: "PixelOperator", tahoma;
  
}

.back:hover{
	
	border-color: var(--darkgrey);
	outline-color: black;
	color: black;
	cursor: pointer;
	box-shadow: 0px 4px 0px black;
	
}


.button{
	
	height: 100%;
	border: solid 3px white;
	outline: solid 3px var(--lightgrey);
	background-color: white;
	color: var(--lightgrey);
	font-family: "PixelOperator", tahoma;
	font-size: 20px;
	margin: 8px;
	font-weight: bold;
	box-shadow: 0px 6px 0px var(--lightgrey);
	border-radius: 4px;
	
}

button:hover{
	
	border-color: var(--darkgrey);
	outline-color: black;
	color: black;
	cursor: pointer;
	box-shadow: 0px 4px 0px black;
	
}


.main-container{
	
	width: 500px;
	display: flex;
	justify-content: center;
	
}

.buttons{
	
	height: 50px;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	
}

.scroll{
	
	width: 50%;
	overflow: hidden;
	position: absolute;
	margin-top: 150px;
	height: 264px;
	width: 390px;
	padding: 20px;
	
}

.frame{
	
	width: 100%;
	height: auto;
	
	
	
}

.gbw-info{
	
	width: 100%;
	height: 100%;
	border: solid black 5px;
	
}

body{

    scrollbar-color: grey black;
	font-family: "PixelOperator", tahoma;

}