* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background-image: url(../images/Background.png);
}

/* Header/logo Title */
.header {
	padding-top: 10%;
    padding-bottom: 10%;
	text-align: center;
	color: lightgray;
	background-color: #ffffff3d;
	background-repeat: no-repeat;
	background-position: bottom;
	background-attachment: scroll;
	background-image: url(../images/Banner.png);
	background-size:cover;
	text-shadow:2px 2px black;
}

a:link {
  color: rgb(135, 216, 243);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(209, 149, 209);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(51, 131, 184);
  background-color: transparent;
  text-decoration: underline;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  background-color: #0b0a0a;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #5e5e5e14;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: #ddd0;
  padding: 20px;
  color: white;
  text-align: center;
  background-image: url(../images/Background.png);
}

.main p {
  background-color: #0b0a0a;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd0;
  color: white;
  position: relative;
  bottom: 0;
}

/* Button */
.button {
  background-color: #ffffff3d; /* gray */
  border: none;
  color: white;
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;

}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: firebrick;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #313131;
color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: orangered;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  	}
}