@charset "utf-8";

/*
   Author: Kierra Ramsey
   Date:   12/12/2021
   StyleSheet for About Us
   Filename: HighlanderAbout.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;
}


/* Middle text */
.middle-text {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: rgb(224, 195, 150);
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Comic Sans, Comic Sans MS, cursive;
  font-size: 20px;
}

.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;
}

/* ==============================
	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;
	}
	
	.middle-text {
	  position: absolute;
	  width: 50%;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	  background-color: rgb(224, 195, 150);
	  color: black;
	  padding-left: 20px;
	  padding-right: 20px;
	  padding-top: 20px;
	  padding-bottom: 20px;
	  font-family: Comic Sans, Comic Sans MS, cursive;
	  font-size: 10px
	}
	
}

/*	================================
	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;
	}
	
	.middle-text {
	  position: absolute;
	  width: 50%;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	  background-color: rgb(224, 195, 150);
	  color: black;
	  padding-left: 20px;
	  padding-right: 20px;
	  padding-top: 20px;
	  padding-bottom: 20px;
	  font-family: Comic Sans, Comic Sans MS, cursive;
	  font-size: 20px
	}

}