@charset "utf-8";
/*
	Author: Landin Jones
	Project: Midterm Exam
	Date: 10/12/2023
*/


body {
	background: linear-gradient(345deg, rgb(100, 135, 121), rgb(124, 238, 194) 80%); /*Use a least 1 gradient*/
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
}

img {
   height: 360px;
   width: 720px;
   opacity: 80%;
}

section  p { /*Descendant Selector*/
	font-size: 16px;
}

section#image {
	display: flex;
	align-items: center;
	filter: brightness(1) /* 1 Css Filters on separate items*/
}

address#text {
	font-style: normal;
	padding-bottom: 320px;
	padding-left: 20px;
	font-size: 16px;
}

li {
	list-style-type: decimal; /*List style property 1 used. The other is on attendancestyles.css*/
}

a:hover {
	color: black;
}

a:visited {
	color: blue;
}
	
a:link {
	color: blue;
}

/*
Screens for Phone
*/

@media only screen and (max-width: 480px) {
	
	ul {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		height: 240px;
    }
	
	section#left {
		order: 99;
	}
	
	body > footer {
		order: 100;
	}
		
  

 
}

