body {
	margin: 0;
    padding-top: 0px;
    padding-bottom: 20px;
}

ul.navbar {
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-left:17.5%;
	overflow: hidden;
	background-color: #222;
}

ul.navbar li {
	float: left;
}

ul.navbar li:hover, ul.navbar li.main:hover{
	background-color:green;
}

ul.navbar li.main {
	background-color: #333
}

ul.navbar li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15%;
    padding-right: 15%;
}

.welcome {
	text-align: center;
	
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	
}

.row:after {
	content:"";
	display:table;
	clear:both;
}
	

.column {
	float:left;
	padding:10px;
	width: 30%;
	text-align:center;
	border-style: solid;
	border-width: 5px;
	border-radius: 10px;
}

.btn {
	background-color:#333;
	padding: 3% 3%;
	color:white;
	text-align:center;
	text-decoration: none;
	border-radius: 10%;
}

.btn:hover {
	background-color:green;
}

.collapsebutton {
	background-color: #eee;
    color: #222;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsebutton:hover {
	background-color: green;
}

.collapsecontent {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.wrong {
	color:red;
}

.right {
	color:green;
}

.aspectratio1 {
	aspect-ratio: 1 / 1;
}

.fleximgcontainer {
	display:flex;
	flex-direction:row;
	justify-content: center;
	align-items: center;
}

.fleximage {
	float:center;
	max-width:90vw;
	max-height:100%;
}

.pointsdisplay {
	float:center;
	width:50vw;
	aspect-ratio: 1 / 1;
}

.gameaspect {
	position:relative;
	overflow:hidden;
	width: 97.5vw;
	max-width: 1280px;
	padding-top: 56.25%;
	border: 10px solid black;
	border-radius: 5%;
	margin: 10px;
}

.gameinset {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	border:0;
	aspect-ratio: 16 / 9;
}

@media screen and (max-width:800px) {
	.row {
		flex-direction:column;
	}
	.column {
		width:90%;
	}
	
	.fleximgcontainer {
		flex-direction:column;
	}
	
	ul.navbar {
		padding-left:0;
	}
	
	ul.navbar li {
		float:none;
	}
	
	.pointsdisplay {
		width: 70vw;
	}
	
	.gameaspect {
		width: 70vw;
	}
}
}

@media screen and (max-width:600px) {


