body {
  min-height: 300px;
  margin: 0;
}

main {
  height: 100vh;
  width: 100vw;
  position: relative;
  background: #dff0f2;
  overflow: hidden;
}

.waves {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50px;
}

.base-sea {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #a3d8e8;
    height: calc(50vh - 50px);
}

.main-container {
    position: fixed;
    width: 400px;
    left: calc(50% - 200px);
    bottom: calc(50vh - 200px);
}

.ass img { position: relative; z-index: 3; }
.palm img { width: 50%; height: auto; transform: translate(20px, 30px); position: relative; z-index: 2; }
.schiuma1 { width: 380px; bottom: calc(50vh - 240px); margin-left: -20px; height: auto; position: fixed; z-index: 1; }
.schiuma2 { width: 100px; bottom: calc(50vh - 162px); height: auto; margin-left: 315px; position: fixed; z-index: 1; }
.logo {
    display: none;
    z-index: 1;
    position: fixed;
    bottom: calc(50vh - 50px);
    right: 50px;
    width: 400px;
    height: auto;
}

@media (min-width: 768px){
  .logo {
    display: block;
  }
}

.zoomInOut {
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    }
    @keyframes zoomIn {
    0% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

}

.slideInUp {
    animation-name: slideInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    }
    @keyframes slideInUp {
    0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
    }
    100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    }
} 

/* Animation */
.wave-paths use {
  animation: move-waves 10s ease-in-out infinite;
  fill: url(#wave-gradient);
}
.wave-paths use:nth-child(odd) {
  animation-direction: reverse;
  animation-duration: 13s;
}
.wave-paths use:nth-child(1) {
  animation-delay: -2s;
  opacity: 0.7;
}
.wave-paths use:nth-child(2) {
  animation-delay: -3s;
  opacity: 0.5;
}
.wave-paths use:nth-child(3) {
  animation-delay: -4s;
  opacity: 0.3;
}
.wave-paths use:nth-child(4) {
  animation-delay: -5s;
}

@keyframes move-waves {
  0% {
    transform: translate3d(-30px, 0, 0);
  }
  50% {
    transform: translate3d(30px, 0, 0);
  }
  100% {
    transform: translate3d(-30px, 0, 0);
  }
}

.werecumming {
  background-color: #ef92bc;
  position:fixed;
  bottom: 0;
  right: 5px;
  color: white;
  padding: 5px;
  border-radius: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  
}