body {
  margin: 0;
  font-family: Arial, sans-serif;
}


a {
    text-decoration: none;
    color: inherit;
}

header {
/*    display: flex;
*/
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

header .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}


/* Element 3 */
/* Mobile Menu Icon */
#navbay {
		border: solid 0px red;
		clear: both;
/*		float: right; */
		display: block;
/*		margin-top:0%;
		margin-right:0%; */
		margin: auto;
		top: 0%; 
/*		right: 0%; */
		width:15%; 
		color: darkblue;
/*		background-color: rgba(0,0,0,0.5); 
		background-color: darkblue; */
		padding:10px;
		text-align:center;
}

@media screen and (min-width: 760px) {
	#navbay {
		display: none;
	}	
}

/* END Mobile Menu Icon */
/* END Element 3 */


/* Element 4 */
/* Desktop Menu/Nav Bar */

.navbar {
		border: solid 0px red;
		margin: auto;
		margin-top: 30px;
		vertical-align: middle;
		text-align: center;
		width: 760px;
		font-family: arial;
		font-size: 22px;
}

@media screen and (max-width: 760px) {
	.navbar {
		display: none;
	}	
}


/* Menu Links No Decoration/Colour Change on Hover */
.navbar a:link, a:visited, a:visited {
    text-decoration: none;
	color:darkblue;
}

.navbar a:hover {
    text-decoration: none;
	color:gray;
}
/* END Menu Links No Decoration/Colour Change on Hover */

/* END Desktop Menu/Nav Bar */
/* END Element 4 */


/* END Element 5 */
/* Mobile Menu/Navigator Slide-Over CSS */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: darkblue;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* END Mobile Menu/Navigator Slide-Over CSS */
/* END Element 5 */

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 100vh;
 /* overflow: hidden; */
}

.slide {
	position: relative;
  display: none;
  height: 100vh;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media only screen and (max-width: 760px) {
	.slide img.mobnoshow{
		display: none;
	}
}

@media only screen and (min-width: 760px) {
	.slide img.desknoshow {
		display: none;
	}
}


.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Example text color */
  font-size: 24px; /* Example font size */
  /* Add more styling as needed */
}

.fade {
  animation: fade 1.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-size: 24px;
  user-select: none;
  z-index: 1;
}

.prev { left: 20px; }
.next { right: 20px; }

.dots-container {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: #717171;
}
