@charset "utf-8";
/*
	Author:   Kevin Viren
	Date:     10/22/2023
	Modified: 10/23/2023
	
	Assignment: CIS1406 Midterm Project
	Filename:   partystyles.css
*/


/*
	General Styles
*/

html {
	height: 100%;
	background-color: #0000FF;
}

body { /*#19*/
	display: flex;
	flex-flow: row wrap;
	background-color: white;
	box-shadow: rgb(30, 30, 30) 5px 0px 15px, rgb(30, 30, 30) -5px 0px 15px;
	margin: 0px auto;
	padding: 0px;
	min-height: 100%;
	min-width: 320px;
	max-width: 1024px;
	width: 100%;
}

div#container {
	position: relative;
}

footer {
	width: 100%;
	height: 30px;
	background: linear-gradient(red 15%, blue 23%, rgb(220, 220, 220) 25%); /*#33*/
	opacity: 0.9; /*#32*/
	text-align: center; 
	padding: 20px 0px;
	border-top: 1px solid black;
}

header  img {
	display: block;
	border-top: 3px solid black;
	border-bottom: 3px solid black;
}

nav > ul {
	display: flex;
	list-style-type: none;
}

nav > ul li {
	flex-basis: 150px;
	flex-grow: 1 1 150px;
	background-color: rgb(220, 220, 220);
	border: 2px solid black;
	text-align: center;
}

nav a {
	text-decoration: none;
}

a:link, a:visited { /*#26*/
	color: black;
}

a:hover { /*#26*/
	color: red;
}

h1, h2, h3, p {
	padding: 2px 20px;
}

div#list{
	text-align: center;
	list-style: inside;
}

@media only screen and (max-width: 480px) {
	
}

@media only screen and (min-width: 481px) {
	
}


@media only screen and (min-width: 769px) {

}
