body{
  background-color:white;
  color:black;
  font-family:Arial;
  margin: 0;
  box-sizing: border-box
}
  
 h1 {
	font-size: 26px;
  }
 h2 {
	font-size: 22px;
  }
 p {
	font-size: 16px;
	margin: 0;
 }
 a {
	text-decoration: none;
	margin: 0;
 }
 div {
	margin: 0;
}

/* Navigation Bar */
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #014a73;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #a4cbdc;}

ul.topnav li a.active {background-color: #a4cbdc;}

ul.topnav li.right {float: right;}

@media screen and (max-width: 600px) {
  ul.topnav li.right, 
  ul.topnav li {float: none;}
}

/* Slideshow container */
.mySlides1, .mySlides2 {display: none}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: relative;
  width: auto;
  padding: 10px;
  color: #014a73;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px 3px 3px 3px;
  user-select: none;
}

/* Caption text */
.text {
  color: #014a73;
  font-size: 16px;
  bottom: 8px;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #014a73;
  font-size: 16px;
  margin-bottom: 5px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 0;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
