/* ***************Main************ */

body {
	font-family: Baskerville;
}

.content {
  max-width: 900px;
  margin: auto;
}

/* **************Navigation Bar************ */

/* The Overlay (background) */
.overlay {   
  height: 0%;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(255,255,255); 
  background-color: rgba(255,255,255, 0.95); 
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; 
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 33%; 
  width: 100%; 
  text-align: center; 
  margin-top: 30px; 
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #808080;
  display: block; 
  transition: 0.3s; 
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: black;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.overlaybutton {
	float: right;
}

.navbar {
	overflow: hidden;
	background-color: #FFFFFF;
	position: -webkit-sticky; 
    position: sticky;
    top: 0;
}

/* Style top navigation bar links */
.navbar a {
	float: left;
	display: block;
	color: #808080;
	text-align: center;
	padding: 20px 20px;
	text-decoration: none;
}

/* Right-aligned links */
.navbar a.right {
	float: right;
	font-family: Avenir Next;
	margin-top:10px;
	font-size:115%;
}

/* Hover for navigation */
.navbar a:hover {
	color: #33C173;
}


@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

.title {
  padding: 30px; /* some padding */
  text-align: center; /* center the text */
  background: white; /* white background */
  color: black; /* white text color */
}

/* Increase the font size of the <h1> element */
.title a {
  text-align: center;
  font-size:400%;
}

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.main {
 margin-left:15%;
 margin-right:15%;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
  font-family:Avenir Next;
  color:grey;
}

.column img {
  float:right;
  text-align: center;
  width:80%;
  padding:10px;
}

.column a {
  text-decoration:none;
  color: #33C173;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

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

/* **************Footer************ */

.footer {
  padding: 5px; 
  margin-top: 10px;
  text-align: center; 
  background: black;
  margin-bottom:5px; 
}
