@charset "utf-8";

/*
   Author: Kierra Ramsey
   Date:   12/12/2021
   StyleSheet for Contact Us
   Filename: HighlanderContact.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: 45%;
  text-align: center;
  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;
}



/* ==============================
	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;
	}

	
	.middle-text {
	  position: absolute;
	  width: 50%;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-40%);
	  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: 15px
	}
	
}