@charset "UTF-8";

html, body {
	padding: 0px;
	margin: 0px;
}

body {
	background-color: rgba(200,200,200,.40);
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

/*Navigation/Top Bar Start*/
header {
	min-height: 100px;
	background-color: rgba(200,200,200,1.00);
}

nav {
	background-color: rgba(200,200,200,1.00);
	position: relative;
	z-index: 100000;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0px 160px;
	display: flex; /* turn column to line */
	justify-content: left;
} /* use to modify specifically to our bullets in our nav tag. more than one nav with bullets use class style */

nav ul li a {
	background-color: rgba(200,200,200,1.00);
	display: block;
	padding: 20px 50px 20px 50px;
	color: rgba(0,73,126,1.00);
	font-size: 1.25em;
	text-decoration: none;
} /* looking for anchor tags within list items, ulisted items, within nagivations */

nav ul li a:hover {
	background-color: rgba(0,73,126,1.00);
	color: rgba(200,200,200,1.00);
}

nav ul li ul {
	display: none;
	position: absolute; /*prevent button from stretching */
	flex-direction: column; /* creates drop down menu */
} /* styling every unordered list item that is inside of an unoredered list, that is inside a list item, that is inside an unordered list */

nav ul li:hover ul {
	display: block;
}

nav ul li ul li:first-child {
	border-left: none;
}

nav ul li ul li:last-child {
	border-right: none;
	border-bottom: 1px solid white;
}

nav ul li ul li a {
	background-color: rgba(255,229,21,1.00);
	border-right: 1px solid white;
	border-left: 1px solid white;
	border-top: 1px solid white;
	color: rgba(63,62,62,1.00);
}

nav ul li ul li a:hover {
	background-color: rgba(2,109,186,1.00);
}

.position {
	position: absolute;
	z-index: 1000001;
	top: 40px;
	left: 30px;
}

.position2 {
	position: absolute;
	justify-content: right;
	top: 50px;
	right: 30px;
}

/*Photos in row start*/
*{box-sizing: border-box;
}

.column {
	float: left;
	width: 33.33%;
	padding: 5px;
	font-size: 1.5em;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}
/*photos in row end*/

/*text above photos in row start*/
p a:link {
	color: white;
	text-decoration: none;
}

p a:hover {
	color: yellow;
}

/* Text above images Begins*/
.container {
	position: relative;
	text-align: center;
	color: white;
	font-size: 1.25em;
}

.top-left {
	position: absolute;
	top: 30px;
	left: 40px;
}

.centered {
	position:absolute;
	top: 40%;
	left: 51%;
	transform: translate(-40%,-51%);
}

.bottom-right {
	position: absolute;
	bottom: 70px;
	right: 60px;
}

.bottom-right2 {
	position: absolute;
	bottom: 30px;
	right: 50px;
}
/*Text Above Images End*/

/*search button start*/
input[type=text] {
  posiition: fixed;
  width: 200px;
  height: 35px;
  /*-webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;*/
}

/* When the input field gets focus, change its width to 100% */
input[type=text]:focus {
  width: 25%;
}
/*search button end*/

footer {
  height: 40px;
  padding: 10px 30px;
  text-align:right;	
  color: rgba(0,73,126,1.00);
  position: sticky;
  background-color: rgba(200,200,200,1.00);
}

p1 a {
	text-decoration: none;
}
	