body{
    line-height:1.15;
}

/* main images overlay */

.image_wrapper {
  position: relative;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute; 
  background: rgba(56, 56, 56, 0.5);
  
  /* center overlay text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay_2 {
/*   top: 0;
  right: 0;
  left: 0;
  bottom: 0; */
  inset: 0;
}

.text{
    text-align:center;
    color:#fff;
    font-size:2.25rem;
}

/* Menu */ 

nav{
    background-color:#fff;
    display:block;
}

.nav-link{ /* adds wider spacing between menu items */
	padding-right:2rem !important;
	padding-left:2rem !important;
}

li{
    display:inline-block;
}

a{
    text-decoration:none;
}

/* when holding down mouse click, change colour*/
.menudiv li a:active{
 color: #fff;
}


a:hover{
    color:white;
    background-color: #bd7225;
    border-radius:25px/75px;
}

.active{
    color:white;
    background-color: #bd7225;
    border-radius:25px/75px;
}

.menu{
    background-color:#fff;
    border:0;
    color:#000; 
    font-family:Trump_Gothic_East, Lato, Sans-Serif; 
    padding:6px; 
    font-size:35px
}

.margin_auto{
	margin:auto;
}

.menuLogo{
   width:100%;
   margin:auto; 
   display:block;
}

/* buttons */

button {
    background-color: #bd7225;
    border: none;
    color:white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
}

/* back to top button */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #bd7225;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #e6af5b;
}



/* Smaller screen sizes */  
  
@media only screen and (max-width: 600px) {
  
  .menuLogo{
      width:100%;
  }
  
  nav{
      position:inherit !important;
  }
  
}