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

/*SMARTPHONES*/
@media only screen
and (max-device-width : 1024px)
{
/* Styles */
body {
	background-color: black;
	text-align: center;
	display: inline;
}
footer {
	width: 95%;
	position: fixed;
	bottom: 0px;
	text-align: right;
	color: white;
	font-size: 14px;
	background-color: black;
	opacity: .8;
}

.MenuItems {
	display: inline-block;
	font-size: 70px;
	margin-top: 25px;
	padding: 0px 7px 0px 7px;
	border-radius: 15px;
	text-align: center;
	background-color: lightgray;
	color: black;
	width: 80%;
	height: 80px;
	opacity: 0.75;
	line-height: 80px;
}
.MenuItems:target {
}
.DropdownContent {
	width: 70%;
	text-align: center;
	opacity: 0;
	z-index: 1;
	display: none;
}
.DropdownContent a {
	transition: all 0.5s;
	color: lightgray;
	text-decoration: none;
	display: block;
	padding: 5px;
	border-radius: 5px;
}
.DropdownContent a:hover {
	transition: ease-in-out 0.5s;
	color: black;
	background-color: dimgray;
}
.Dropdown:hover .DropdownContent {
	transition: all 0.25s;
	opacity: 1;
	background-color: dimgray;
	border-radius: 5px;
	display: inline;
}
.SubItems {
	color: white;
	font-size: 50px;
}
.FooterLinks {
	text-decoration: none;
	color: white;
}
.FooterLinks:hover {
	transition: 0.75s;
	color: red;
}

#MainContainer {
	height: 20px;
	color: white;
	word-spacing: 50px;
	letter-spacing: 10px;
	width: 300px;
	display: inline;
	margin-left: 25px;
}
#Tablet {
	position: absolute;
	z-index: -1;
	opacity: 0.4;
	width: 3000px;
}
#Banner {
	text-align: center;
	width: 100%;
}
#BannerImg {
	max-width: 100%;
}
#Badges {
	display: inline-block;
	width: 100px;
	opacity: .75;
}
#Badges:hover {
	opacity: 1;
}
#Menu {
	text-align: center;
}
}




/*LAPTOP/DESKTOP*/
@media only screen
and (min-device-width : 1025px) {
/* Styles */
	
body {
	display: block;
	background-color: black;
}
footer {
	width: 95%;
	position: fixed;
	bottom: 0px;
	text-align: right;
	color: white;
	font-size: 14px;
	background-color: black;
	opacity: .8;
}

.MenuItems {
	text-decoration: none;
	color: white;
	font-size: 28px;
	margin-right: 25px;
	padding: 0px 7px 0px 7px;
	border-radius: 5px;
}
.MenuItems:hover {
	transition: 0.75s;
	color: lightgray;
}
.Dropdown {
	position: relative;
	display: inline-block;
}
.DropdownContent {
	text-align: left;
	opacity: 0;
	position: absolute;
	z-index: 1;
	display: none;
}
.DropdownContent a {
	transition: all 0.5s;
	color: lightgray;
	text-decoration: none;
	display: block;
	padding: 5px;
	border-radius: 5px;
}
.DropdownContent a:hover {
	transition: ease-in-out 0.5s;
	color: black;
	background-color: dimgray;
}
.Dropdown:hover .DropdownContent {
	transition: all 0.25s;
	opacity: 1;
	background-color: dimgray;
	border-radius: 5px;
	display: block;
}
.Dropdown:hover .MenuItems {
	background-color: lightgray;
	color: black;
}
.SubItems {
	color: white;
	font-size: 22px;
}
.FooterLinks {
	text-decoration: none;
	color: white;
}
.FooterLinks:hover {
	transition: 0.75s;
	color: red;
}

#MainContainer {
	height: 20px;
	color: white;
	word-spacing: 50px;
	letter-spacing: 10px;
	width: 300px;
	display: inline;
	margin-left: 25px;
}
#Tablet {
	position: absolute;
	z-index: -1;
	width: 100%;
	min-width: 1000px;
	opacity: 0.6;
}
#Banner {
	text-align: left;
	width: 95%;
	min-width: 1000px;
}
#BannerImg {
	max-width: 60%;
	min-width: 900px;
}
#Badges {
	vertical-align: top;
	width: 75px;
	opacity: .75;
}
#Badges:hover {
	opacity: 1;
}
#Menu {
	color: white;
	height: 24px;
	line-height: 24px;
	margin-top: -20px;
	min-width: 800px;
	text-align: left;
	margin-left: 20px;
}
}