/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;
}



/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */

body {
	background-color: #0F0F0F
	
}




header{
	text-align:left;
	padding: 10px;
}



main {

/*background-color: #00ff00;*/
padding: 10px;

}

/* =========================================================================================== */



#container{
font-family: 'syne mono', sans-serif;	
font-size: 12px;
color: #ffffff;
margin: auto;
width:auto;
max-width: 1500px;
margin:auto;
height: 1400px;
}



.i2 {
	display: inline-flex;
	float: left;
	margin-left: 10px;
	height: 300px;
	padding:15px;
	width: 45%;
	height: auto;
}
.i3 {
	float: left;
	margin: auto;
	height: 300px;
	padding:20px;
	width: 45%;
	height: auto;
	justify-content: center;
}


h3{
		display: inline-flex;

font-family: 'syne mono', sans-serif;	
font-size: 16px;
color: #ffffff;
margin: auto;
width:auto;
max-width: 900px;
height: 130px;
padding: 35px;
}

.i4{
display: inline-flex;
float: left;
margin: auto;
height: auto;
padding:22px;
width: 93%;
height: auto;
bottom: 50px;
position: relative;
}





/* =========================================================================================== */
footer{
	font-family:chakra petch, sans-serif;
	font-size: 0.85em;
	clear: both;
	color: #ffffff;
	padding: 30px;

}
.mobile {
	display:none;
}
img {
	float: left;
	margin-left: 20px;
	height: 68px;
	padding:1em;
	background-color: #0F0F0F;
  }
 .text-container {
	margin-left: 200px;
	background-color: #0F0F0F;
	color: #00ff00;
	font-size: 10px;
	font-family: 'Syne Mono';
	height: 10px;
	padding:45px;
	margin: auto;
  }
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	font-family: Major Mono Display;
	border: 1px solid #00FF00;
  }

  li {
	float: left;
  }
 
  li a {
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
  }
  /* Change the link color to #111 (black) on hover */
  li a:hover {
	background-color: #111;
  }
/* Add a gray right border to all list items, except the last item (last-child) */
li {
	border-right: 1px solid #00FF00;
  }
  li:last-child {
	border-right: none;
  }
.nav-text {
	color: #ff0000;
}
/* ========================================
MEDIA QUERIES!
You can adjust the min-width numbers below, and add as many new media queries as you need.
======================================== */



/* Minimum width for laptops. */
@media all and (min-width: 769px) {
	
main {

/*	background-color: #00ff00;*/
	padding: 10px;
}


	
} /* closes 769px+ */
/* Minimum width for desktop screens. */
@media all and (min-width: 1024px) {
	




} /* closes 1024px+ */



