body{
	background-color: black;
}

#Menu{
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	background-color: black;
	pointer-events: auto;

	font-family: 'Roboto', sans-serif;
  color: white;

	background-image: url("../images/menu/Title.jpg");
	background-size: cover;
	background-position: center;
}

#MenuStart{
	position: absolute;
	width: 100%;
	height: 20%;
	bottom: 0;
}

#MenuOptions {
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
}

.MenuOption {
	display: table-cell;
	height: 100%;
	width: 50%;
  vertical-align: middle;
  background: rgba(50,50,50,0.84);
  box-shadow: 4px 0px black;
	pointer-events: auto;
	border-top: 1px solid black;
  text-shadow: 2px 2px rgba(50,50,50,0.84);
}

.MenuOption:hover {
	background: rgba(50,50,50,0.50);
}

#MenuMain{
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
}

#MenuButtons {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.MenuButton {
	margin: auto;
	display: flex;
	flex: 1;
	justify-content: center;
  align-items: center;
  background: rgba(50,50,50,0.84);
  margin-top: 2%;
	width: 95%;
	border: 2px solid #00000061;
	text-shadow: 2px 2px rgba(50,50,50,0.84);
}

.MenuButton:hover {
	background: rgba(50,50,50,0.50);
}

#MenuAbout {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;

	background-image: url("../images/menu/Title.jpg");
	background-size: cover;
	background-position: center;
}

#MenuAboutContent {
	display: flex;
	flex-direction: column;
	margin: auto;
	width: 100%;
	height: 100%;
}

#MenuFAQ {
	border: 1px solid white;
	padding: 10px;
}

.MenuLogo {
	display: flex;
	flex: 3;
	justify-content: center;
  align-items: center;
  object-fit: contain;
}

.Modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0,0,0,0.4);
}

.Modal-Content {
  background-color: #ad74b7f0;
  margin: auto;
  padding: 20px;
  width: 80%;
}

/* Modal Close Button */
.Close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.Close:hover,
.Close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#TitleBox {
  position: fixed;
	display: block;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	color: #428684;
}

#Title {
	font-family: 'Advent Pro', sans-serif;
	width: 98%;
	margin: auto;
  font-size: 2em;
	text-shadow: 2px 2px 1px rgba(60,42,42,0.84);
	text-align: center;
}

#Subtitle {
	padding-top: -5px;
	width: 60%;
	margin: auto;
	font-size: .5em;
	text-align: center;
}
