
header {
	background-color: rgb(196, 196, 196, 0.9);
	height: 86px;
	grid-column: 1/9;
	grid-row: 1;
	
}

#logo {
	padding-top: 10px;
	float: left;
	height: 76px;
	padding-left: 20px;
	
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 1;
  
}

nav li a:hover  {

  background-color: #c46b0c;
  color: #1e222c;
}



nav li {
  float: right;
  background-color: #2A315B;
  
}

nav li a {
  display: block;
  color: #A61C21;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 50px;
  
}


body {
	background-image: url(BackClouds.jpg);

	background-repeat: no-repeat;
	
}

h1 {
	
	background-color: rgb(196, 196, 196, 0.5);

	color: #A61C21;
	text-align: center;
	border-radius: 50%;
	font-size: 80px;
	height: 30%;
	width: 100%;
	position: relitive;


}

#about {
	
	background-repeat: no-repeat;
	width: 40%;
	background-size: contain;
	float: right;
	border: 15px solid #1e222c;
	border-right: 15px solid #c46b0c;
	position: relative;
	
	
}

#websites {
	
	background-repeat: no-repeat;
	width: 40%;
	float: left;
	height: auto;
	border: 15px solid #1e222c;	
	border-left: 15px solid #c46b0c;
	position: relative;
	top: 500px;
}

#wrapper {
	
	display: grid;
	grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 250px)) minmax(0px, 1fr);
	grid-template-rows: auto;
	
}

.h1 {


}
 main{
	 grid-column: 2/8;
	 grid-row: 2;
 }


 @media only screen and (max-width: 992px) {
	 #wrapper{grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 128px)) minmax(0px, 1fr);
	 }
 }
 
 @media only screen and (max-width: 768px) {
	#wrapper{ grid-template-columns: 100%;
	}
 }
 
 
 
 
 
 
 
 
 
 