/* URL links for fonts */
@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');
body {
	font-family: 'Quicksand', sans-serif;
	margin: 0;
	padding: 0; 
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-size: 100%;
	box-sizing: border-box;
	height: 100%;
	background-color: rgba(77, 72, 122, 0.925);
}
/* Reset some default styles to avoid browser inconsistencies */
body, h1, h2, p, ul, li {
	margin: 0;
	padding: 0;
  }
.responsive {
	max-width: 100%;
	height: auto;
}
h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 45px;
	font-weight: lighter;
	color: rgb(255, 255, 255);
	text-align: center;		
	
}
h2{
	font-family: 'Quicksand', sans-serif;
	font-size: 25px;
	font-weight: bold;
	color: rgb(193, 214, 2);				
}
p {
	font-size: 16px;
	color: rgb(255, 255, 255);
	text-align: center;
}
ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
  color: rgb(255, 255, 255);
}
li {
	display: list-item;
	color: rgb(255, 255, 255);
  }
a {
	margin: 3px;
 }
a:visited {
	color: rgb(255, 255, 255);
 }
a:hover {
	color: rgb(131, 131, 131);				
}
.center {
	text-align: center;
	display: block;
	margin: auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 50px 120px 1fr 1fr 1fr 1fr 1fr 80px;
	text-align: center;
}
.header {
    grid-column: 1/ 12;
	grid-row: 2;
	background-color: rgba(16, 12, 53, 0.356);
	margin-right: 5px;
	margin-bottom: 5px;
	text-align: center;
	padding: 20px;
}
.header-title {
	font-size: 24px;
	margin: 0;
  }
  
  @media (min-width: 268px) {
	.header-title {
	  font-size: 50px;
	}
  }
  
  @media (min-width: 1024px) {
	.header-title {
	  font-size: 60px;
	}
  }
#navbar {
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center-align the links horizontally */
  transition: top 0.3s;
  z-index: 500;
}
#navbar a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  flex-grow: 1; /* Distribute available space evenly */
  text-align: center;
}
#navbar a:hover {
    background-color: #ddd;
    color: black;
}
.content {
	margin-left: 5px;
	margin-right: 5px;
    grid-column: 1/ 12;
	grid-row: 3;
	background-color: rgba(16, 12, 53, 0.356);
	margin-bottom: 5px;
}
.content1 {
	margin-left: 5px;
	margin-right: 5px;
    grid-column: 1/ 12;
	grid-row: 4;
	background-color: rgba(16, 12, 53, 0.356);
	margin-bottom: 5px;	
}
.content2 {
	margin-left: 5px;
	margin-right: 5px;
    grid-column: 1/ 12;
	grid-row: 5;
	background-color: rgba(16, 12, 53, 0.356);
	margin-bottom: 5px;
}
.content3 {
	margin-left: 5px;
	margin-right: 5px;
    grid-column: 1/ 12;
	grid-row: 6;
	background-color: rgba(16, 12, 53, 0.356);
	margin-bottom: 5px;
}
.content4 {
	margin-left: 5px;
	margin-right: 5px;
    grid-column: 1/ 12;
	grid-row: 7;
	background-color: rgba(16, 12, 53, 0.356);
}

img{
	max-width: 100%;
	max-height: 100%;
	display: block; /* remove extra space below image */
}
/* The side navigation menu */
.sidenav {
	height: 100%; /* 100% Full-height */
	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 501; /* Stay on top */
	top: 0; /* Stay at the top */
	left: 0;
	background-color: rgba(16, 12, 53, 0.356); /* Black*/
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 60px; /* Place content 60px from the top */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }
  
  /* The navigation menu links */
  .sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: rgb(193, 214, 2);
	display: block;
	transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
	color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
	transition: margin-left 1s;
	padding: 5px;
  }
	#main1 {
		transition: margin-left 1s;
		padding: 5px;
	  }
	#main2 {
		transition: margin-left 1s;
		padding: 5px;
	  }
	#main3 {
		transition: margin-left 1s;
		padding: 5px;
	  }
	#main4 {
		transition: margin-left 1s;
		padding: 5px;
	  }
	#main5 {
		transition: margin-left 1s;
		padding: 5px;
	  }
	#main6 {
		transition: margin-left 1s;
		padding: 5px;
	  }
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
  }
  
.sidebarright {
	grid-column: 12;
	grid-row: 2/ -1;
	background-color: rgba(16, 12, 53, 0.356);
	align-items: center;
	min-width: 50px;
	max-width: 170px;
	margin-bottom: -5px;
}
.footer {
	grid-column: 1/ 12;
	grid-row: 8;
	position: static; 
	margin-top: 5px;
	margin-right: 5px;
	bottom: 0; 
	left: 0; 
	width: auto; 
	height: 80px; 
	z-index: -1;
	background-color: rgba(16, 12, 53, 0.356);
} 

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 18px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 18px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color:rgba(77, 72, 122, 0.925);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


