*{ /* css reset */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

  /* Home page */

body{
	background-color: linen;
}
	
.clear{
 clear: both;
}

h1{
	color: midnightblue;
	font-family: arial;
	text-align: center;
	margin: 50px 0;
}
.largeimage{
	width: 700px;
	height: auto;
}
footer {
	text-align: center;
	padding: 20px;
	color: midnightblue;
	font-family: arial;
}
a:hover {
	color: red;
	font-size: 20px; /* text changes size when hovering */
}
	
.tinylogo {
	width: 50px;
	height: auto;
	float: left;
	display: block; /* do I need this */
}
.navbuttons {
	float: right;
	display: flex;
	width: 400px;
	margin-top: 15px; /* quick fix to center it to left logo */
}
.button {
	color: midnightblue;
	text-decoration: none;
	margin-left: 10px;
}

.ctabutton {
	color: midnightblue;
	text-decoration: none;
	text-align: center;
	font-size: 30px;
}
a {
	text-decoration: none;
	color: midnightblue;
	font-family: arial;
}
p {
	color: midnightblue;
	font-family: arial;
}
h1 {
	margin-top: 90px;
}

li {
	font-size: 36px;
	font-family: arial;
	color: red;
	margin-bottom: 10px;
}
	 /* Create 2x2 grid container */
.image-grid{
	width: 100%;
		
		}
.image-grid::after{
	content:"";
	display: table;
	clear: both;
	}
	
	/* spacing with % */
.grid-item {
    width: 44%;
	margin-left: 4%;
	margin-top: 4%;
  }	
	
.grid-item img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;
	box-sizing: border-box;
  }
 
  /* Left half of the page */
 .left-side {
    width: 50%;
    float: left;
    padding: 50px 5px 50px 0px;
	box-sizing: border-box; 
  }
/* Right half container */
 .right-side {
    width: 50%;
    float: right;
	padding-left: 5px;
	box-sizing: border-box;
  }
	
  
  /* instructor pg 2 */
  
 #logobox{
	  float: left;
  }
#mainbox{
	width: 90%;
	margin: 0 auto;
}
.layoutbox{
 float: left;
 width: 50%;
 position: relative;
 height: 500px;
}
.center{
 
 padding: 130px 10px 50px 10px
}
.frames{
 height: 500px;
/*  margin: 50px 0; */
}
.photo{ /* dress code class */
 width: 100%;
 object-fit: cover;
}
.photo-height{
 height: 500px;
}
.sidebyside{
 width: 90%;
 margin: 0 auto;
}

.upper{ /* show more of upper image */
	object-position: center top;
}


/* pg 3 Classes */
.ctacenter {
	text-align: center;
	margin-top: 200px;
	font-size: 30px;
}

/* pg 4 Contact */
.centeriframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 600px;
}
.finalphoto {
	width: 992px;
	height:300px;
}
.finalphoto img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
	object-position: bottom;
}
.floatright {
	float: right;
}