/* Reset some default styles */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: Copperplate, Papyrus;
  background-color: #ffffff;
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.home {
	background-color: #0f729f;
	padding: 20px;
	margin-bottom: 10%;
}

.home h1 {
		color: white;
		text-align: center;
		margin-left: 30%;
		margin-right: 30%;
		line-height: 1.5;
}

.home p {
		color: white;
		text-align: center;
		font-size: 38px;
		margin-bottom: 30px;
		margin-top: 30px;
		
}

.homeAbout {
		background-color: white;
		overflow: auto;
		padding: 4%;
}

.homeAbout h1 {
		color: black;
}


.h51 {
	color: #b3b300;
	font-family: Copperplate, Papyrus;
}
header {
  background-color: #ffffff;
  color: #000000;
  padding: 20px 0;
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  display: block;
  margin: 0 auto;
  width: 50%;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  margin-top: 40px;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
}

nav a:hover {
  text-decoration: none;
  color: #b3b300;
}

section {
  padding: 50px 0;
}

section h2 {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0f729f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #ad8330;
}

footer {
  background-color: #ad8330;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}


/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.menuButton {
	Display: none;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {
  .home h1 {
    margin-left: 0%;
	margin-right: 0%;
	font-size: 25px;
  }
  
  iframe {
	width: 100%;  
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .home h1 {
    margin-left: 0%;
	margin-right: 0%;
	font-size: 15px;
  }
  
  iframe {
	width: 100%;  
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .home h1 {
    margin-left: 15%;
	margin-right: 15%;
	font-size: 15px;
  }
  
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
  
  .menuButton {
	Display: block;
  }
  
  .menuButton h1 {
	color: #000000;
	text-decoration: none;
	font-size: 25px;
  }
  
  .menuButton h1:hover {
	  text-decoration: none;
      color: #b3b300;
  }
  
  .fullMenu {
		Display: none;
  }
  
  iframe {
	width: 100%;  
  }
}



