/* .navmenu {
  animation: navmenuAnimation 1.0s;
  animation-fill-mode: forwards;
  
}

@keyframes navmenuAnimation {
  0% { opacity: 0; bottom: -40px;  }
  100% { opacity: 1; bottom: 0px;  }
} */

@font-face {
    font-family: 'logoFont';
    src: url('../myfont/MichelinBold.ttf');
}

@font-face {
    font-family: 'udyFont';
    src: url('../myfont/DaughterofFortune.ttf');
}

@font-face {
    font-family: 'sansNewFont';
    src: url('../myfont/Roboto-Regular.ttf');
}

body{
font-family : 'sansNewFont'
}

.flipLogo {
  position: relative;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  animation: flipLogoanimate 4.0s;
  animation-iteration-count: infinite;
}

/* Do an horizontal flip when you move the mouse over the flip box container */

@keyframes flipLogoanimate {
 0% { transform: rotateY(0deg) }
 100% { transform: rotateY(360deg) }
}

.strokeme {
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


.wave-container {  
  height: 110vh;
  background-color: #20B2AA;
  position: relative;
}

.wave-container::before {   
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -0.3%;
  left: 0;
  background-size: auto;
  background-repeat: repeat no-repeat;
  background-position: 33vw bottom;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200  80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 59L50 55C100 51 200 44 300 30C400 15 500 -6 600 1C700 8 800 44 900 59C1000 73 1100 66 1150 62L1200 59V80H1150C1100 80 1000 80 900 80C800 80 700 80 600 80C500 80 400 80 300 80C200 80 100 80 50 80H0V59Z' fill='%23ffffff'/></svg>");
}

@media(max-width:850px) {
  .wave-container::before {    
    height: 45px
  }  
}