@charset "UTF-8";
/* CSS Document */

body {
	background-repeat: no-repeat;
	background-image: url(../images/kailah-valentine-pastelgalaxy.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
body img {
	margin-left: auto;
	margin-right: auto;
}
.tittle {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
nav {
	background-color: rgba(11,171,160,1.00);
	height: 65px;
	position: relative; /* This gives our z-index something to hook on to */
	z-index: 1000; /* This makes sure our navigation appears over the top of the foreground duck image */
}

/* This is the base of our bulleted list */
nav ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none; /* Hide those bullets */
	list-style-image: none; /* NO REALLY, hide those bullets */
}

nav ul li {
	display: block; /* Turns our list item into a box to contain our buttons */
	width: 20%; /* We want our buttons to take up equal parts of the navigation area. Because we have four buttons, then the width must be 25% */
	height: 65px; /* Match our <nav> tag height of 65px */
	float: left; /* Float them left so they go horizontally across the page */
}

/* Here is the actual button style itself */

nav ul li a {
	display: block; /* Makes <a> tag fill 100% of the width of it's containing <li> */
	height: 50px; /* This is really 65px, but I have subtracted the padding-top from this number in order to horizontally balance the type */
	text-align: center;
	background-color:rgba(186,157,253,1.00);
	color: rgba(255,255,255,1.00);
	text-decoration: none;
	font-size: 2em;
	font-style: italic;
	font-weight: bold;
	padding-top: 15px; /* This padding vertically centeres the type */
	

}

/* End of button */


/* Using a freaky :first-child pseudo-class style to take the orphan highlight border off the left edge */
nav ul li:first-child a {
	border-left: none;
}


/* This is all Agostina's fault. She wanted to dye the second button a different color in our navigation for some reason. So, using an :nth-child(n) pseudo-class style, we did. */
nav ul li:nth-child(2) a {
	background-color: rgba(186,157,253,1.00);
}

/* AND she wanted a rollover of a different color. So we did that too. */
nav ul li:nth-child(2) a:hover {
	background-color: rgba(202,108,253,1.00);
}

/* Using a freaky :last-child pseudo-class style to take the orphan shadow border off the right edge */
nav ul li:last-child a {
	border-right: none;
}

/* Rollover color */
nav ul li a:hover {
	background-color: rgba(0202,108,253,1.00);
}
h1 {
	margin-left: auto;
	margin-right: auto;
	color: #FBFBFB;
	padding-left: 200px;
	padding-right: 200px;
	padding-top: 143px;
}

body div p {
	position: absolute;
	padding-top: 227px;
	padding-right: 300px;
	padding-left: 200px;
	font-size: xx-large;
	color: #FFFFFF;
}
