/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: LightSkyBlue;
  color: black;
  font-family: Verdana;
  overflow-x: hidden;
  overflow-y: scroll !important;
}


h1 {
  font-family: cursive;
  color: red;
  
  
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center; 
}

@font-face {
  font-family: "GennaroPalmieriFormal3DMedium";
  src: url("GennaroPalmieriFormal3DMedium.ttf");
}

p {
  font-family: "GennaroPalmieriFormal3DMedium", "Comic Sans MS", "Comic Sans";
  margin: auto;
  max-width: 70%;
}

img {
 min-width: 0;
 height: auto;
}

.content-wrapper {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size:calc(12px + 1.5vw);
  overflow-x: hidden;
}

.main-content {
  overflow-x: hidden;
}

.spin {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    min-width: 0;
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 8s linear infinite;
    -moz-animation:spin 8s linear infinite;
    animation:spin 8s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


.attention-bounce{
  position: fixed;
  right: -250px;
  bottom: 0;
  z-index: 3;
  animation-name: BOUNCE;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}


@keyframes BOUNCE{ 
    from { 
      transform: translateY(200px) rotate(40deg) scale(20%);
      } 
    to {
      transform: translateY(0px) rotate(-60deg) scale(30%);
      } 
} 


.moving-cloud{
  position: absolute;
  left: 0;
  z-index: 2;
  animation-name: MOVE-CLOUD;
  animation-duration: 23s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  overflow: hidden;
  overflow-x: hidden;
}
@keyframes MOVE-CLOUD {
   from {
     transform: translateX(-100%);
   }
   to { 
     transform: translateX(220%);
   }
}
.moving-cloud:nth-of-type(2n) {  animation-delay: -10s }
.moving-cloud:nth-of-type(2n+1) { animation-delay: -30s }  
.moving-cloud:nth-of-type(3n) { animation-delay: -17s; }  





* {
  cursor: url(worm1.png), auto;
  -webkit-animation: cursor 400ms infinite;
  animation: cursor 400ms infinite;
}

@-webkit-keyframes cursor {
  0% {cursor: url(worm1.png), auto;}
  20% {cursor: url(worm2.png), auto;}
} 

@keyframes cursor {
  0% {cursor: url(worm1.png), auto;}
  20% {cursor: url(worm2.png), auto;}
}