body, html {width: 100%; height: 100%; margin: 0; padding: 0}

#canvas-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.9;
}

.warning {
    position: fixed;
    z-index: 10;
    top: 30px;
    background-color: #F1A9A0;
    padding: 10px;
    color: #96281B;
  }
  
  .links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #666;
    z-index: 3;
  }
  
  .links a {
    display: block;
    width: 20%;
    float: left;
    text-align: center;
    background-color: #555;
    height: 100%;
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0,0,0,.5);
    line-height: 40px;
    font-family: sans-serif;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 20px;
    box-sizing: border-box;
    border-right: solid 1px #666;
  }
  
  .links a + a {
    border-left: solid 1px #333;
  }
  
  .links a:hover,
  .links a:focus { background-color: #444; }

  .hold {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    scroll-behavior: smooth;
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    height: 100%;
    width: 100%;
    z-index: 0;
    pointer-events: none; 
  }
  
  .element {
    height: 100%;
    width: 100%;
    text-align: center;
    color: #FFF;
    position: relative;
    z-index: 0;
    opacity: 0.9;
     
  }
  
  .element-1 /*{ background-color: #D64541; } */
  .element-2 /*{ background-color: #4183D7; } */
  .element-3 /* { background-color: #019875; } */
  .element-4 { background-color: #6C7A89; }
  .element-5 /* { background-color: #F2784B;
    opacity: 0.5; } */

#text p {
  display: inline-block;
  font-size: 50px;
  text-align: center;
  position: absolute;
  top: 40%;
  animation: appear 6s;
  left: 315px;
  z-index: 10;
  opacity: 1;
}
@keyframes appear {
  from {
    left: -100px;
  }
  to {
    left: 315px;
  }
}
@-moz-keyframes appear {
  /* Firefox */
  from {
    left: -100px;
  }
  to {
    left: 315px;
  }
}
@-webkit-keyframes appear {
  /* Safari and Chrome */
  from {
    left: -100px;
  }
  to {
    left: 315px;
  }
}
@-o-keyframes appear {
  /* Opera */
  from {
    left: -100px;
  }
  to {
    left: 315px;
  }
}


.column {
  width: 500px;
  height: 250px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  bottom: 0px;
  position: absolute;
  z-index: 10;
  pointer-events: auto; 
  
}

@media (max-width: 500px) {
  .column {
    width: 100%;
    height: 190px;
    bottom: 0px;
  }
}

::-webkit-scrollbar {
    display: none;
}





/* ////////////////////////////// */
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  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/4 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 {
  -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}
}