@font-face {
    font-family: Mutta;
    src: url('Mutta.ttf');
}


html,body{
    margin: 0;
    background:url('bg.jpg') 0 0 no-repeat;
    background-size: 100% 100%;
    height: 100%;
    overflow: hidden;
}

h1{
    margin: 0;
}

a{
    text-decoration: none;
}

.title {
    font-family: 'mutta';
    font-size: 7rem;
    text-align: center;
    color: rgb(237, 135, 12);
   position: relative;
   z-index: 0;
   margin-top: 150px;
}

.title::after {
    content: attr(data-content);
    -webkit-text-stroke: 8px #fff;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.linkg{
    text-align: center;
}

.linkg a {
    display: inline-block;
    margin: 0 10px;
}

.linkg img{
    width: 50px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.linkg a:hover img{
    transform: scale(1.2);
    filter: drop-shadow(rgb(252, 239, 222) 0px 0px 10px);
}

.memege {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    width: 240px;
    margin: 30px auto;
}

.editicon{
    position: absolute;
    right: -40px;
    width: 40px;
    top: -10px;
    animation: scale 1s ease-in-out infinite;
}
.memege a{
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.memege:hover{
    animation: shake 1s ease-in-out infinite;
}



.waves{
    width: 100%;
    position: absolute;
    bottom: 0;
}
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }

  .float-main{
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 99;
    animation: wave-motion 25s cubic-bezier(.55,.5,.45,.5) infinite;
  }

  .beaver{
    z-index: 99;
    position: relative;
  }

  .beaver img{
    width:40%;
    max-width: 200px;
    filter: drop-shadow(rgb(61, 39, 10) 0px 10px 5px);
  }

  .wood {
    margin-top: -105px;
  }

  .wood img{
    width:90%;
    max-width: 460px;
  }

  @media (max-width: 768px) {
    .waves {
      height:160px;
      min-height:40px;
    }
  }


  @keyframes wave-motion {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-10px) rotate(5deg);
    }
  }

  .float-main {
    animation: wave-motion 3s ease infinite;
  }



  @keyframes shake {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(-5deg);
    }
  }

  @keyframes scale {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }