* {
  box-sizing: border-box
}

/* TEXT */
body {
  margin: 2% 3% 2% 3%;
  font-family: Verdana;
  font-size: 90%;
  line-height: 150%;
  background-color: #F7FCFF;
}

a {
  font-size: 115%;
  font-family: Verdana;
  font-weight: bold;
  /* text-decoration: none; */
  color: #555555;
}

a:hover {
  color: #5500FF;
  font-weight: bold;
}

h1 {
  text-align: center;
}

h2 {
  margin-bottom: 3px;
  color: #5500FF;
}

ul {
  margin-top: 0px;
}


/*######################################*/

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
