@charset "utf-8";
/* CSS Document */

/* The Overlay (background) */
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */  
  height: 89%; /* 77% */
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  top: 0px;  /* 90px */
  right: 0;
  background-color: rgba(1,83,77, 0.9); /* Black w/opacity/see-through rgba(59,59,59, 0.9) */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 15px; /* Place content 15px from the top */
  transition: 0.8s; /* 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: 2%; /* 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 {
font-family: "RedHatDisplay VariableFont wght";
  padding: 8px;
  text-decoration: none;
  font-size: 16px;
  color: white;
  display: block; /* Display block instead of inline */
  transition: 0.2s; /* Transition effects on hover (color) */
}
/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #93D500;
	text-shadow: 2px 2px 5px black;
	text-transform: none;
}
/* Position the close button (top right corner) */
.overlay .closebtn {
  color: white;
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 40px;
}
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {font-size: 16px}
  .overlay .closebtn {
  font-size: 40px;
  top: 0px;
  right: 10px;
  }
}

/* The navigation bar */
.menu {
  overflow: hidden;
  background-color:transparent;
  position: fixed; /* Set the menu to fixed position */
  top: 20px; /* Position the menu at the top of the page */
  right: 0px;
  width: 100px; /* Full width */
  text-align: right;
}

/* Links inside the menu */
.menu a {
  float: right;
  display: block;
  color: white;
  text-align: center;
  padding: 0px 0px;
  text-decoration: none;
}

/* Change background on mouse-over */
.menu a:hover {
  background: #595959;
  color: black;
  align-content: center;
}

/* Main content */
.main {
  margin-top: 20px; /* Add a top margin to avoid content overlay */
}