* {
  box-sizing: border-box
}

body {
  color: black;
  line-height: 1.5em;
  font-size: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
}

.mySlides {
  display: none
}


/* Slideshow container */
.slideshow-container {
  width: 90%;
  position: relative;
  margin: auto;
}

/* Text  */
.content-text {
  position: absolute;
  top: 30%;
  width: auto;
  padding: 5%;
  width: 100%;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Caption text
.text {
  color: #f2f2f2; 
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
} */
/* The Content box */
.content {
  width: 100%;
  height: 90vh;
  background-color: white;
}

/* Links */
a,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  color: black;
}
i:hover{
  cursor: pointer;
}


/* 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 2s 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: .1
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .1
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}


/* Animation logo */
.animation-logo {
  
  height: 50px;
  margin: 2%;
  padding: 1.5%;
  align-content: center;
  border-radius: 2.5%;
  background-color: rgba(112, 110, 110, 0.472);
  position: relative;
  -webkit-animation: mymove 4s;
  /* Safari 4.0 - 8.0 */
  animation: mymove 4s;
}

/* Safari 4.0 - 8.0 */
#div1 {
  -webkit-animation-timing-function: linear;
}

#div2 {
  -webkit-animation-timing-function: ease;
}

#div3 {
  -webkit-animation-timing-function: ease-in;
}

#div4 {
  -webkit-animation-timing-function: ease-out;
}

#div5 {
  -webkit-animation-timing-function: ease-in-out;
}

/* Standard syntax */
#div1,
#div6 {
  animation-timing-function: linear;
}

#div2,
#div7 {
  animation-timing-function: ease;
}

#div3,
#div8 {
  animation-timing-function: ease-in;
}

#div4,
#div9 {
  animation-timing-function: ease-out;
}

#div5,
#div10 {
  animation-timing-function: ease-in-out;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
  from {
    left: 80%;
  }

  to {
    left: 0;
  }
}

/* Standard syntax */
@keyframes mymove {
  from {
    left: 80%;
  }

  to {
    left: 0;
  }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  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;
}

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