body {
	margin: 0;
	font-family: 'Roboto';
	}  

.grid-container {
 	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: 120px 20px auto 20px 120px;
	background-color: #DCCADC;
	min-width: 500px;
	height: 100vh;
	}

.header_footer {
	grid-column-start: 1;
	grid-column-end: 3;
	background-color: #000368;
	padding-left: 5%;
	text-align: left;
	height: 120px;
	align-content: center;
	}

.strip {
	grid-column-start: 1;
	grid-column-end: 3;
	background-color: #FFD60A;
	padding-left: 5%;
	text-align: left;
	align-items: stretch;
    height: 20px;
	}
	
.page_contents { 
	grid-column-start: 1;
	grid-column-end: 3;
	background-color: #DCCADC;
	width: 100%;
	height:100%;
	}

.strip a {
	float: left;
	display: block;
	color: #00045E;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
	height: 20px;
	width: 100px;
	font-weight: bold;
	}
	
.strip a:hover{
	color: white;
	background-color: #F2CA00;
	}
		
.dropbtn {
  background-color: #FFD60A;
  color: #00045E;
  border: none;
  cursor: pointer;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  height: 20px;
  width: 100px;
  font-size: 16px;
  font-weight: bold;
}

.dropbtn:hover, .dropbtn:focus {
  	color: white;
	background-color: #F2CA00;
}

.dropdown {
  float: left;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFD60A;
  width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #00045E;
  text-decoration: none;
  display: block;
  width:93.3%;
  font-weight: bold;
  padding-top:5px;
  padding-bottom: 5px;
}

.dropdown a:hover {
	color: white;
	background-color: #F2CA00;
	}
	
.show {display: block;}
	
.gallery {
	margin: 5px;
	border: 1px solid #ccc;
	max-width: 500px;
	height: auto;
	background-color:#A5B1B6;
	padding: 10px;
	border-radius: 3%;
	}
		
.gallery img {
	width: 100%;
	height: auto;
	}
	
.desc {
	padding: 5px;
	text-align: left;
	}
	
.sell_button {
	display:flex;
	background-color: #FFD60A;
	color: #00045E;
	justify-content: center;
	align-items: center;
	padding: 10px;
	text-decoration: none;
	height: 40px;
	width: 200px;
	border-radius: 20px;
	}

.sell_button:hover{
	color: white;
	background-color: #F2CA00;
	}
	
video {
  width: 100%;
  height: 100%;

}

.game_desc {
	padding: 5px;
	text-align: left;
	max-width: 500px;
	}