/* STYLES */
/*        */
/* DECLARATION ORDER */
/* 1. Positioning */
/* 2. Box Model */
/* 3. Typographic */
/* 4. Visual */
/* 5. Miscellaneous */


html {
  scroll-behavior: smooth;
}
body {
  margin: 20px;
	font-family: "Verdana", "sans-serif", "monospace";
	fontsize: 18px;
	fontstyle: normal;
	font-weight: 200;
  color: black;
}
* {
  box-sizing: border-box;
}


/* NAVIGATION */
.months {
  display: flex;
	flex-flow: row wrap;
  justify-content: center;
}
.months a {
  text-decoration: none;
  display: block;
  margin: 15px;
  padding: 15px;
  text-align: center;
  color: black;
  font-weight: bold;
  transition: 0.3s ease;
  border-radius: 5px;
  background-color: rgba(127, 127, 127, 0.3);
}
.months a:hover {
  background-color: rgba(127, 127, 127, 0.9);
}



/* HEADINGS */
/* .monthnavigation a{
  background: red;
  cursor: pointer;

  color: black;
  font-weight: bold;
  font-size: 50px;
  transition: 0.3s ease;


}
.monthnavigation h1{
  display: inline;
  background: blue;
} */


h1 {
  text-align: center;
}
h2, h3 {
	text-align: center;
}



/* PARAGRAPHS */
p {
	text-align: left;
}


/* IMAGE LISTS */
.lists {
  list-style: none;
  display: grid;
	padding: 0px;
	grid-gap: 10px;
  grid-template-rows: auto;
  grid-auto-rows: auto;
  justify-content: center;
}

.lists.thumbs{
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.lists > li > img {
  border-radius: 5px;
}

.lists > li > img:hover {
  opacity: 0.8;
}

.lists > li > iframe {
  width: 100%;
  height: 100%;
}



/* CLASS MODAL */
/* Background */
/* .modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.modal-content {
  display: flex;
  justify-content: center;
}
.mySlides {
  display: none;
}
.imslide {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: auto;
  width: auto;
} */




/* 1. Positioning */
/* 2. Box Model */
/* 3. Typographic */
/* 4. Visual */
/* 5. Miscellaneous */


/* CLASS MODAL */
/* Background */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  display: none;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  width: 100%;
  height: 100%;

  overflow: auto;
  background-color: black;
}
.modal-content {
  display: flex;
  justify-content: center;
  /* background-color: rgba(0, 0, 0, 0.8); */
}
.mySlides {
  display: none;
}







/* Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 40px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.cursor {
  cursor: pointer;
}


/* Next & Previous Buttons */
.prev, .next {
  cursor: pointer;
  position: fixed;
  bottom: 50%;
  left: 15px;
  padding: 5px 25px;
  color: white;
  font-weight: bold;
  font-size: 50px;
  transition: 0.3s ease;
  border-radius: 5px;
  background-color: rgba(127, 127, 127, 0.3);

  /* Can Not Select The Text */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.next {
  left: auto;
  right: 15px;
}
.prev:hover, .next:hover {
  background-color: rgba(127, 127, 127, 0.9);
}
