<style>
body,h1,h2,h3,h4,h5,h6 {font-family: 'Comfortaa', cursive;}
body, html {
  height: 100%;
  /*color: #777;*/
  color: #F8F8FF;
  line-height: 1.8;
}

/* Slideshow container */
.slideshow-container {
  position: sticky;
  margin:auto;
  overflow: hidden;
}

#more1 {display: none;}
#more {display: none;}
#more2 {display: none;}

.logo {
  position: sticky;
  margin-bottom: 20px ;
  background-color: #37BEB7;
  border-radius: 25px;
}

.shake:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.noHover{
    pointer-events: none;
}

.imagetest {
  background-image: url("../images/Asset_5.png");
  background-position: center;
  background-size: cover;
  min-width: 100%;
  max-height: 100%;
}

.level1 {
  background-image: url("../images/Asset_6.png");
  max-height: 100%;
  max-width: 100%;
  background-position: absolute;
  background-size: cover;
}

.level2 {
  background-position: center;
  background-size: cover;
  background-image: url("../images/Asset_7.png");
  height: auto;
  width: 100%;
}

.level3{
  background-position: center;
  background-image: url("../images/Asset_8.png");
  max-width: 100%;
  height: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

@media only screen and (max-width: 800px) {
  .mySlides{
  display: none;
  position: sticky;
}
}

.zoom {
  transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.zoomphoto {
    transition: transform .2s; /* Animation */
}

.zoomphoto:hover {
  transform: scale(4); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* 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;
}

.color-change-3x {
	-webkit-animation: color-change-3x 4s linear infinite alternate both;
	        animation: color-change-3x 4s linear infinite alternate both;
}

.color-change-2x {
	-webkit-animation: color-change-2x 4s linear infinite alternate both;
	        animation: color-change-2x 4s linear infinite alternate both;
}

@-webkit-keyframes color-change-2x {
  0% {
    background: #ddfff;
  }
  100% {
    background: #2b8682;
  }
}
@keyframes color-change-2x {
  0% {
    background: #ddfff;
  }
  100% {
    background: #2b8682;
  }
}

.color-change-orange {
	-webkit-animation: color-change-orange 4s linear infinite alternate both;
	        animation: color-change-orange 4s linear infinite alternate both;
}

@-webkit-keyframes color-change-orange {
  0% {
    background: #ddfff;
  }
  100% {
    background: #fcb603;
  }
}
@keyframes color-change-orange {
  0% {
    background: #ddfff;
  }
  100% {
    background: #fcb603;
  }
}

.color-change-lilac {
	-webkit-animation: color-change-lilac 4s linear infinite alternate both;
	        animation: color-change-lilac 4s linear infinite alternate both;
}

@-webkit-keyframes color-change-lilac {
  0% {
    background: #ddfff;
  }
  100% {
    background: #369167;
  }
}
@keyframes color-change-lilac {
  0% {
    background: #ddfff;
  }
  100% {
    background: #369167;
  }
}

@-webkit-keyframes color-change-3x {
  0% {
    background: #19dcea;
  }
  50% {
    background: #b22cff;
  }
  100% {
    background: #ea2222;
  }
}
@keyframes color-change-3x {
  0% {
    background: #19dcea;
  }
  50% {
    background: #b22cff;
  }
  100% {
    background: #ea2222;
  }
}

/* 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(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 {
  -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}
}

/* Make navbar bold */
.w3-top {
    font-weight:bolder;
    font-family: 'Comfortaa', cursive;
}

/* The side navigation menu */
.sidenav {
 height: 100%; /* 100% Full-height */
 width: 0; /* 0 width - change this with JavaScript */
 position: fixed; /* Stay in place */
 z-index: 1; /* Stay on top */
 top: 0; /* Stay at the top */
 left: 0;
 background-color: #ddffff; /* Pale-blue*/
 overflow-x: hidden; /* Disable horizontal scroll */
 padding-top: 60px; /* Place content 60px from the top */
 transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
 padding: 8px 8px 8px 32px;
 text-decoration: none;
 font-size: 25px;
 color: #2b8682;
 display: block;
 transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
 color: #ff9800;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
 position: absolute;
 top: 0;
 right: 25px;
 font-size: 36px;
 margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
 transition: margin-left .5s;
 padding: 20px;
}

.menu {
  color:#37BEB7;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
 .sidenav {padding-top: 15px;}
 .sidenav a {font-size: 18px;}
}

/*Make about section bold */
.about {
   font-family: 'Comfortaa', cursive;
   line-height: 1.5em;
}

.game1 {
  font-family: 'Comfortaa', cursive;
  line-height: 1.5em;
}

.game2 {
  font-family: 'Comfortaa', cursive;
  line-height: 1.5em;
}

.game3 {
  font-family: 'Comfortaa', cursive;
  line-height: 1.5em;
}

.gameinfo {
  font-family: 'Comfortaa', cursive;
  line-height: 1.5em;
}

.contact {
  font-family: 'Comfortaa', cursive;
}

.parallax {
  font-family: 'Comfortaa', cursive;
}


.generalinfo {
  font-weight:bolder;
}
/* Create a Parallax Effect */
.bgimg-2, .bgimg-3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /*background-color: #120f16;*/
  background-color: #F8F8FF;
  pointer-events: none;
}

/* Second image (Portfolio) */
.bgimg-2 {
  background-image: url("../images/lavaro1.png");
  min-height: 400px;
  pointer-events: none;
}

/* Third image (Contact) */
.bgimg-3 {
  background-image: url("../images/zwni_Pappa.png");
  min-height: 400px;
  pointer-events: none;
}

/* Turn off parallax scrolling for tablets and phones
@media only screen and (max-device-width: 2000px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 600px;
  }*/

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}

</style>
