/*Color Palette
#BCCEF1-periwinkle
#B5C9F7-slightly darker periwinkle
#7AA1F5-vista blue
#2866F6-royal blue
#0345DD-palatinate blue
#002B8F-resolution blue
*/
@font-face {font-family: MyHandwriting; src: url(Dannihandwriting-Regular.otf); format(otf);}
@font-face {font-family: Playfair; src: url(Playfair_Display.otf); format(otf);}

body  {
	margin: auto;
	display: block;
	text-align: center;
	}
.logo {
	float: left;
}
.skipnav {visibility:hidden;
}

h1 {font-family: MyHandwriting, Arial, sans-serif;
		font-size:2 em
		color:#2f63da;
		background-color:#001D5E;
		margin-left:10%;
		margin-right:10%;
		}
		
body {font-family:Playfair, Arial, sans-serif;
		font-size:2 em
		color:#2f63da;
		background-color:#001D5E;
		margin-left:10%;
		margin-right:10%;
		}
		
div:hover ul {
	background-color: #002B8F;
	padding: 10px;
}

div.moon {
	margin: auto;
	display: block;
	text-align: center;
	}
	
div.slideshow-container {
	margin: auto;
	display: block;
	text-align: center;
	}

p {background-color:#7AA1F5;
	padding:1em;
	border-width:10px;
	border-color:beige;
	border-style:dotted;
	margin: 25px auto 25px;
	width:1000px;
	display: block;
	text-align: center;
}

a {
	color:#BCCEF1;
}

ul {
font-family: MyHandwriting, Arial, sans-serif;
  list-style-type: none;
  margin: auto;
  padding: 1em;
  font-size: 1.7em;
}

li {
  display: inline;
  padding: 1em;
}

h1 {
	color:#BCCEF1;
}

h2 {
	color:#2866F6;
}

/* Images Carousel */
* {box-sizing:border-box}

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

/* 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: 18px;
  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;
}

.prev {
  left: 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: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

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

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

.active, .dot:hover {
  background-color: #717171;
}

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

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