﻿/** External Sytle sheet for newboatbuilders.com web page mobile menus **/
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(63,127,191, 0.8); /*backgorund of the menu */
  overflow-x: hidden;
  transition: 0.5s;

  
}
.overlay-content {
  position: relative;
  top: 5%;
  width: 80%;
  text-align: left;
  margin-top: 10px;
}

.overlay a {  /* menu list font color and size */
  padding: 8px;
  text-decoration: none;
  font-size: 16px;
  color:#E4F858; /* Yellow */
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn  { /* the close button - X */
  position:absolute;
  top: 20px;
  right: 45px;
  font-size: 36px;

}
.overlay .closeMenu  {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 36px;
}
/* Tablet sizes */
@media screen and (max-width: 768px) {
  .overlay a {font-size: 12px;}
  .closebtn {
  font-size: 20px; 
  top: 15px;
  right: 35px; 

} /* mobile sizes */
 @media screen and (max-width: 400px) {
  .overlay a {font-size: 12px;}
  .closebtn {
  font-size: 24px;
  top: 15px;
  right: 10px; 
} 

    }}