/* Style sheet created by: Stephanie Rosas 5/21/20 */

/* Style for body specifies a background color */
body {
	background-color: #FFFFFF;
}

/* Style to create a fluid image */
img {
	max-width: 100%;
}

/* Styles for Mobile Layout */

/* Style for the container centers the page and specifies the width */
#container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* Style for the header specifies top margin, background color, rounded corners, and center align content */
header {
	font-family: Verdana, Arial, serif;
	font-size: 2em;
	margin-top: 0.2em;
	background-color: #FFFFFF;
	border-radius: 0.5em;
	text-align: center;
}

/* Style for nav specifies text properties */
nav {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

/* Style specifies padding and margins for unordered list */
nav ul {
	padding: 0;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* Style for nav li specifies the background color, removes bullet style, and applies margins and padding for list items within the navigation */
nav li {
	background-color: #FF6600;
	border-radius: 1em;
	list-style-type: none;
	margin: 0.3em;
	padding: 0.4em;
}

/* Style changes navigation link text color to white and removes the underline */
nav li a {
	color:#FFFFFF;
	text-decoration:none;
}
/* Style for the main specifies a block display, text properties, margins, padding, rounded corners, and borders  */
main {
	display: block;
	font-family: Georgia, "Times New Roman", sans-serif;
	font-size: 1em;
	margin-top: 0.2em;
	padding: 0.5em;
	border-top: solid 0.2em #FF6600; 
	border-bottom: solid 0.2em #FF6600;
}

/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}

/* Style displays the mobile class */
.mobile {
	display: inline;
}

/* Style hides desktop class */
.desktop {
	display: none;
}

/* Styles padding for paragraph elements within div element */
div p {
	padding-left: 1em;
	padding-right: 1em;
}

/* Styles padding and text alignment for section element */
section {
	padding: 1%;
	text-align: center;
}

/* Styles border, padding, margin, and text align for article element */
article {
	border-top: solid 0.2em #FF6600;
	padding: 2%;
	margin: 0.5%;
	text-align: left;
}

/* Styles aside element */
aside {
	text-align: center;
	color: #FFFFFF;
	background-color: #FF6600;
	font-size: 1.25em;
	margin: 1em;
	padding: 1em;
}

/* Styles block display and margin for input element and textarea element */
input, textarea {  
	display: block;  
	margin-bottom: 1em;  
}  

/* Styles block display for label element */
label {  
	display: block;  
} 

/* Style rule for the video class */
.video {
	padding: 1em;
	text-align: center;
}

/* Style rule for video element */
video {
	border: 0.2em solid #FF6600;
	height: auto;
	max-width: 100%;
}

/* Media query for tablet viewport targets screen size with a minumum width of 481px. */
@media only screen and (min-width: 481px) {

/* Style specifies width and float for image*/
img {
	width: 25%;
	float: left;
}

/* Style specifies margin and padding for paragraph elements within the header element */
header p {
	margin-bottom: 4em;
	padding-top: 1.5em;
}

/* Style specifies a horizontal display for navigation links */ 
nav li {
	display: inline;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	padding-left: 0;
	padding-right: 0;
	width: 23%;
}

/* Style specifies clear and top margin properties for the main element*/
main {
	clear: left;
	margin-top: 12em;
}

/* Style specifies to hide the mobile class */
.mobile {
	display: none;
}

/* Style specifies to display the desktop class */
.desktop {
	display: inline;
}

/* Styles background color for section element */
section {
	background-color: #FF6600;
}

/* Styles background color, border, border radius, and margin for article element */
article {
	background-color: #FFFFFF;
	border-top: 0;
	border-radius: 0 3em 3em 3em;
	margin-bottom: 1em;
}

/* Styles aside element */
aside {
	text-align: center;
	color: #FF6600;
	background-color: #FFFFFF;
	box-shadow: 1em 1em 1em #000000;
	border-radius: 8em;
}

/* Styles border and padding of table*/
table, th, td {  
	border: solid 0.1em #FF6600;  
	border-collapse: collapse;  
	padding: 1em;  
}  

/* Styles font size and padding of caption*/
caption {  
	font-size: 1.5em;  
	padding-bottom: 1em;  
} 

/* Styles float, padding, text-align, and width of label element */
label {  
	float: left;  
	padding-right: 0.5em;  
	text-align: right;  
	width: 8em;  
} 

}

/* Media query for desktop viewport targets screen size with a minumum width of 769px. */
@media only screen and (min-width: 769px) {

/* Style specifies a width for container */
#container {
	width: 80%;
}

/* Style for nav specifies top margin */
nav {
	margin-top: -5em;
}

/* Style specifies margin and padding for unordered list */
nav ul {
	margin:0;
	padding-left: 0.50%;
	padding-right: 0.50%;
}

/* Style for nav li specifies background color, square corners, width, and removes margins and padding for list items within navigation */
nav li {
	background-color: #FFFFFF;
	border-radius: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	width: 18%;
}
	
/* Style changes navigation link text to orange, displays each link as an in-line block element, and styles padding and font size */
nav li a {
	color: #FF6600;
	display: inline-block;
	padding: 0.7em;
	font-size: 1.25em;
}

/* Style rules for pseudo-classes */
nav li a:link {
	color: #FF6600;
}

nav li a:hover {
	color: #4C1F00;
	font-style: italic;
}


/* Style specifies border, border radius, and shadow for main element */
main {
	border: none;
	border-radius: 1em;
	box-shadow: 1em 1em 1em #331400;
	overflow: auto;
}

/* Styles float and width for section element */
section {
	float: left;
	width: 60%;
}

/* Styles aside */
aside {
	float: right;
	width: 25%;
	background-color: #FF6600;
	color: #FFFFFF;
}

/* Styles width and margins of table */
table {  
	width: 80%;  
	margin-left: auto;  
	margin-right: auto;  
	margin-bottom: 1em;  
} 


}


	