

#Banner{
		position:fixed;
	top:0px;
	left:0px;
	height:80px;
	width:100%;
  background-color: #333333;
  z-index: -1;
}


.LargeText
{
	font-family: Arial;
	font-size: 26px;
	color: #FFFFFF
}

h1
{
text-align: center;
font-family: Arial;
color: #FFFFFF
}


.GameButton
{
	padding: 0;
	margin: 5px;
	border: none;
	background: none;
	font-size:14px;
	color: #FFFFFF;
}

.NavButton {
  background-color: #333333; 
  color: white; 
  border: 2px solid #7f7f7f;

  border-radius: 10px;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.NavButton:hover {
  background-color: #b2b2b2;
  color: black;
}


body{
  background-image: url("Background.svg");
  background-repeat: repeat;
 
}

img {
	border-radius: 10%;
  display: block;
  margin-left: auto;
  margin-right: auto;
		cursor: pointer;
}

#contact_box{
 margin: 0;
  border-radius: 10px;
  border: 6px solid black;
  padding: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333333;
}

#games_container
{
	margin-left: 50px;
	position:fixed;
	top:100px;
	right:12px;
	bottom:10px;
	left:10px;
	overflow: auto;
}

#content
{
  height: 100vh;
  width: 100vw;
  position: fixed;
	top:100px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 15px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #1a1a1a; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1f1f1f; 
}