body {
  background: #ADA2B0;
}
.this {
  float: left;
  height: 20px;
  width: 20px;
}

h1 {
  margin: 100px auto 0 auto;
  text-align: center;
}

h2 {
  text-align: center;
}

#message {
  font-size: 3rem;
  text-align: center;
}

#grid {
  margin: 50px auto;
  padding: 0;
}

.snake {
  background: #04824D;
}

.purple {
  background: black;
}

.green {
  background: #B22309;
}

/* NAV EDITS */

a {
	color: white;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: none;
}


nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.fixed {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 10%;
	background-color: black;
}

nav ul li {
	list-style: none;
}

nav > ul > li {
	color: white;
	font-size: 24px;
}

.left {
	display: flex;
	flex-direction: row;
	width: 37%;
}

.left > li {
	padding: 5% 0 0 0;
}

.left > li:last-child {
	margin-left: 8%;
}

.right > li {
	 padding: 6% 15% 0 0;
}

nav > ul > li > a {
	color: white;
	text-decoration: none;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.dropdown {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
  width: 30%;
}

@media screen and (max-width: 920px) {
	nav {
		justify-content: center;
	}

	.left {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.left {
		display: none;
	 }

	.hamburger{
		display: flex;
	  width: 100%;
	  background: black;
	  font-family: 'Open Sans', sans-serif;
		justify-content: center;
	 }

	.navicon{
	  font-size: 25px;
	  margin: 5px 15px;
	  color: seashell;
	 }

	.dropdown{
	  padding-left: 0;
	  margin: 0;
	  list-style: none;
	  display: none;
		width: 100%;
	 }

	.dropdown li{
	  font-size: 24px;
	  padding: 15px;
	  width: 100%;
	  background: black;
	  border-bottom: 1px solid black;
	}

	.dropdown li:last-child{
	  border-bottom: none;
	 }

	.dropdown a:hover{
	  background: black;
	 }
}

/* Mobile Portrait */

@media screen and (device-aspect-ratio: 40/71) and (max-device-width: 640px) {
	.left {
		display: none;
	 }

	.hamburger{
		display: flex;
	  width: 100%;
	  background: black;
	  font-family: 'Open Sans', sans-serif;
		justify-content: center;
	 }

	.navicon{
	  font-size: 25px;
	  margin: 5px 15px;
	  color: seashell;
	 }

	.dropdown{
	  padding-left: 0;
	  margin: 0;
	  list-style: none;
	  display: none;
		width: 100%;
	 }

	.dropdown li{
	  font-size: 24px;
	  padding: 15px;
	  width: 100%;
	  background: black;
	  border-bottom: 1px solid black;
	}

	.dropdown li:last-child{
	  border-bottom: none;
	 }

	.dropdown a:hover{
	  background: black;
	 }
}

/* Mobile Landscape */

@media screen and (device-aspect-ratio: 40/71) and (max-device-width: 640px) {

	.left {
		display: none;
	 }

	.hamburger{
		display: flex;
	  width: 100%;
	  background: black;
	  font-family: 'Open Sans', sans-serif;
		justify-content: center;
	 }

	.navicon{
	  font-size: 25px;
	  margin: 5px 15px;
	  color: seashell;
	 }

	.dropdown{
	  padding-left: 0;
	  margin: 0;
	  list-style: none;
	  display: none;
		width: 100%;
	 }

	.dropdown li{
	  font-size: 24px;
	  padding: 15px;
	  width: 100%;
	  background: black;
	  border-bottom: 1px solid black;
	}

	.dropdown li:last-child{
	  border-bottom: none;
	 }

	.dropdown a:hover{
	  background: black;
	 }
}
