@charset "utf-8";

/*
   Author: Kierra Ramsey
   Date:   12/12/2021
   StyleSheet for Homepage
   Filename: HighlanderHome.css

*/

.logo img {
	left: 0;
	top: 0;
	position: absolute;
	width: 425px;
}


* {
	margin: 0;
	padding: 0;
	font-family: Century Gothic;
}

header {
	background-image: url(soapbackground.png);
	height: 100vh;
	background-size: cover;
	background-position: center;
}

ul {
	list-style-type: none;
	float: right;
	margin-top: 25px;
}

ul li {
	display: inline-block;
}

ul li a {
	text-decoration: none;
	color: white;
	padding: 5px 20px;
	border: 1px solid white;
}

ul li a:hover {
	background-color: rgb(224, 195, 150);
	color: black;
}

.main {
	max-width: 1200px;
	margin: auto;
}

.footer {
	text-align: center;
	font-family: Comic Sans, Comic Sans MS, cursive;
	font-size: 16px;
	position: absolute;
	bottom: 0;
	background: rgb(0, 0, 0);
	background: rgb(0, 0, 0, 0.5);
	color: white;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

iframe {
	width: 450px;
	float: right;
	right: 150px;
	top: 100px;
	position: absolute;

}
	


/* ==============================
	Mobile Styles: 0px to 480px
   ===============================
*/
@media only screen and (max-width: 480px) {
	
	.logo img {
	left: 0;
	top: 0;
	position: absolute;
	width: 225px;
	}
	
	ul {
	position: relative;
	float: right;
	font-size: 10px;
	}
	
	.footer {
	font-size: 15px;
	}
	
}

iframe {
	width: 450px;
	float: right;
	right: 150px;
	top: 100px;
	position: absolute;

}

/*	================================
	Tablet Styles: 481px and greater
	================================
*/
@media only screen and min-width: 481px) {
	
	.logo img {
	left: 0;
	top: 0;
	position: absolute;
	width: 220px;
	}
	
	ul {
	float: right;
	font-size: 8px;
	}
	
	.footer {
	font-size: 15px;
	}

}

iframe {
	width: 450px;
	float: right;
	right: 150px;
	top: 100px;
	position: absolute;

}