/* CSS File for the styles and such for the properties of all objects within the webpage, as well as divs and containers and such */

/* Sets the color of the body, or the physical page itself, to be green (initially) */
body {
	background-image: url("https://media.easy-peasy.ai/836489af-a935-47da-8935-ecda3c10661f/7d6efc95-e07c-4783-9cb7-c4ad120a6f06.png");
}
/* Creates the header, to display tyhe title of the page */
#header {
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 1%;
	border-radius: 10px;
	background-image: url("https://miro.medium.com/v2/resize:fit:1400/1*d4pS6gasnTV4Dj9qKeJLVw.jpeg");
	border: 5px solid purple;
	float: both;
}
#headertext {
	background-color: black;
	font-size: 50pt;
	font-family: fantasy;
	color: lightcyan;
	float: left;
	padding-left: 5px;
	padding-right: 5px;
	margin-left: -5px;
	margin-right: -5px;
}
/* Creates the container, where everything including the header above is located */
#container {
	background-image: url("https://live.staticflickr.com/2693/4362414729_3a544f36c6_b.jpg");
	margin: 5%;
	padding: 2%;
	padding-bottom: 4%;
	color: white;
	font-size: 17pt;
	float: left;
	border-radius: 50px;
	width: 86%;
}
/* Creates a section for every menu button */
#menubox {
	background-color: darkorange;
	margin: 0.2%;
	padding: 1%;
	padding-left: 0.5%;
	padding-right: 0.5%;
	border-radius: 20px;
	float: left;
	border: 5px solid lightgreen;
}
/* Creates the base properties for any menu buttons created */
.menuitem {
	width: 180px;
	height: 63px;
	margin: 5px;
	margin-left: 15px;
	margin-right: 15px;
	background-color: 420000;
	padding: 10px;
	border-radius: 10px;
	border: 5px solid white;
	font-size: 18pt;
	float: left;
	color: FFFF69;
	font-variant: small-caps;
}
/* Added unique properties for when a menu item is hovered ovber to indicate clickability */
.menuitem:hover {
	width: 195px;
	height: 68px;
	margin-left: 7.5px;
	margin-right: 7.5px;
	margin-top: 2.5px;
	margin-bottom: 2.5px;
	background-color: deeppink;
	color: white;
}
.menuitemspecial {
	width: 200px;
	height: 70px;
	margin: 1.5px;
	margin-left: 5px;
	margin-right: 5px;
	background-color: black;
	padding: 10px;
	border-radius: 10px;
	border: 5px solid white;
	font-size: 18pt;
	float: left;
	color: FFFF69;
	font-variant: small-caps;
}
.menuitemspecial:hover {
	width: 220px;
	height: 75px;
	margin-left: -5px;
	margin-right: -5px;
	margin-top: -1px;
	margin-bottom: -1px;
	background-color: white;
	color: black;
	border: 5px solid black;
}
/* Creates the area where text is displayed */
.contentarea {
	margin: 3%;
	padding: 3%;
	background-color: darkblue;
	font-style: italic;
	clear: both;
	float: left;
	border-radius: 15px;
}
/* Creates special properties for the icon of the page, inside of the header */
#icon {
	height: 62.5pt;
	border-radius: 5px;
	margin-left: 20px;
}
/* Creates properties for the two main images within the page so that they aren't too big (or too small) */
.imgmain {
	width: 40%;
	margin-left: 5%;
	margin-right: 4.7%;
	border-radius: 5px;
	float: left;
}
.specialcontentarea {
	width: 34%;
	background-color: pink;
	color: darkblue;
	margin-left: 6.5;
	margin-bottom: 6.5%;
	margin-right: 6.2%;
	padding: 1.5%;
	font-weight: 800;
	float: right;
	font-size: 15pt;
	border-radius: 10px;
}
.title {
	font-size: 40;
}
a {
	color: green;
}
a:visited {
	color: red;
}
a:hover {
	color: orange;
}
a:active {
	color: yellow;
}
iframe {
	margin-top: 2%;
	margin-bottom: 2%;
}