/* styles.css */

/* Style the home page header
 Use background instead of background-image when combining property values*/
header {
  color: #FFFFFF;
	padding: 20px;
	text-align: left;
	background: url(../images/stadium-large.jpeg) center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 200px;
}

body {
  font-family: courier;
  background-color: #FFFFFF; /* White background color for body */
}
/* Create three unequal columns that floats next to each other */
.column {
  float: left;
}

/* Left and right column */
.column.side {
  width: 23%;
  padding-right: 10px;
}

/* Middle column */
.column.middle {
  width: 72%;
  padding-left: 10px;
}
/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/* Style the footer */
.footer {
  padding: 10px;
  text-align: center;
  background-color: #002e5b;
  color: #FFFFFF; /* White color */
}

.vertical-menu {
  width: 100%; /* Set a width if you like */
}

.vertical-menu a {
  background-color: #eee; /* Grey background color */
  color: black; /* Black text color */
  display: block; /* Make the links appear below each other */
  padding: 10px; /* Add some padding */
  text-decoration: none; /* Remove underline from links */
}

.vertical-menu a:hover {
  background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
  background-color:  #002e5b; /* Add a blue color to the "active/current" link */
  color: #FFFFFF; /* White color */
}

.content-wrapper {
  margin: 0 0;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 1375px;
}
