/*
Module 7 Final Website
Author: Jason Minerich
5 June 2016
*/

html {
	font-family: "Courier New", Courier, monospace;
}

/* Header */
h1 {
	background-color: black;
	color: white;
	width: 550px;
	border-radius: 4px 4px 4px 4px;
	font-size: 300%;
}

h3 {
	background-color: black;
	color: white;
	width: 350px;
	padding: 2px 2px 2px 2px;
	border-radius: 4px 4px 4px 4px;
}

/* Lists */
ul#link {
    padding: 0;
}

ul#link li {
    display: inline;
}

ul#link li a {
    background-color: black;
    color: white;
    padding: 10px 10px;
    text-decoration: none;
    border-radius: 4px 4px 4px 4px;
}

ul#link li a:hover {
    background-color: gray;
}

ul {
	list-style-type:none;
}


/* Body */
body {
    background-image: url("background.jpg");
	background-repeat: no repeat;
}

body p{
	background-color: black;
	color: white;
	width: 750px;
	padding: 20px 20px 20px 20px;
	border-radius: 4px 4px 4px 4px;
}


/* Table */
table, th, td {
    border: 1px solid white;
	background-color: black;
	color: white;
	text-align: center;
	padding: 5px;
	border-radius: 4px 4px 4px 4px;
}


/* Media */
img {
	width: 400px;
	height: 300px;
}

img.wing{
	text-align: left;
}

img.jato{
	text-align: right;
}

footer img{
	width: 70%;
	height: 70%;
}