@charset "utf-8";

body {
	font-family: 'Open Sans', sans-serif;
}

a {
	color: #B30002;
}

header {
	width: 80%; /* Width shorthand? */
	max-width: 1400px;
	margin: 0 auto;
}

header {}

header a {
	color: #000000;
	text-decoration: none;
}

header a:hover {
	color: #B30002;
}

nav {
	float: right;
	transform: rotate(90deg);
}

h1 {
	float: left;
	font-family: 'Bad Script', cursive;
}

h2 {
	font-family: 'Bad Script', cursive;
	text-align: center;
}

banner {
	background-image: url("images/glass_row_3.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	clear: both;
	display: block;
	height: 150px;
	width: 100%;
}

main {
	width: 80%;
	max-width: 1400px;
	margin: 0 auto;
}

main article {
	width: 75%;
}

article ul {
	margin-left: 0px;
	list-style-type: none;
}

article ul ul {
	margin-left: 20px;
}

article ul ul ul {
	margin-left: 40px;
}

aside {
	border: 1px solid #000000;
	float: right;
	padding: 10px;
	width: 20%;
}

aside ul {
	list-style-type: none;
	margin-left: -40px;
}

footer img {
	width: 250px;
}

/* Start navigation styles */
.dropbtn {
  background-color: rgba(255, 255, 255, 0);
  color: #000000;
  padding: 30px 20px 0 20px;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

.dropbtn p {
	transform: rotate(90deg);
	letter-spacing: .06em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  min-width: 250px;
  z-index: 1;
}

.dropdown-content a {
  color: #000000;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	color: #B30002;
}

.dropdown:hover .dropdown-content {
	border: 1px solid #444444;
	display: block;
}
/* background color for menu icon */
.dropdown:hover .dropbtn {
	background-color: rgba(0, 0, 0, 0);
}
/* End Navigation button styles */



.indent {
	margin-left: 20px;
}