html {
    background-color: black;
    display: flex;
    flex-direction: column;
    font-family: High Tower Text;
    
}

header {
   width: 100%;
   text-align: center;

    
}

body {
    
}




.waveTextAnimated {
    width: auto;
    margin-top: 80px;
    font-size: 50px;
    text-align: center;
    color: white;
}


.waveTextAnimated span {
    display: inline-block;
    -webkit-animation: wave-text 1s ease-in-out infinite;
            animation: wave-text 1s ease-in-out infinite;
  }


  .waveTextAnimated span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .waveTextAnimated span:nth-of-type(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .waveTextAnimated span:nth-of-type(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .waveTextAnimated span:nth-of-type(4) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .waveTextAnimated span:nth-of-type(5) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  
  .waveTextAnimated span:nth-of-type(6) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .waveTextAnimated span:nth-of-type(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .waveTextAnimated span:nth-of-type(8) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .waveTextAnimated span:nth-of-type(9) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .waveTextAnimated span:nth-of-type(10) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .waveTextAnimated span:nth-of-type(11) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .waveTextAnimated span:nth-of-type(12) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .waveTextAnimated span:nth-of-type(13) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .waveTextAnimated span:nth-of-type(14) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .waveTextAnimated span:nth-of-type(15) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .waveTextAnimated span:nth-of-type(16) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .waveTextAnimated span:nth-of-type(17) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .waveTextAnimated span:nth-of-type(18) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  .waveTextAnimated span:nth-of-type(19) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .waveTextAnimated span:nth-of-type(20) {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  .waveTextAnimated span:nth-of-type(21) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .waveTextAnimated span:nth-of-type(22) {
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
  }
  .waveTextAnimated span:nth-of-type(23) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  .waveTextAnimated span:nth-of-type(24) {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
  .waveTextAnimated span:nth-of-type(25) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  .waveTextAnimated span:nth-of-type(26) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .waveTextAnimated span:nth-of-type(27) {
    -webkit-animation-delay: 2.6s;
            animation-delay: 2.6s;
  }
  .waveTextAnimated span:nth-of-type(28) {
    -webkit-animation-delay: 2.7s;
            animation-delay: 2.7s;
  }






  @-webkit-keyframes wave-text {
    00% {
      transform: translateY(0em);
    }
    60% {
      transform: translateY(-0.6em);
    }
    100% {
      transform: translateY(0em);
    }
  }
   
  @keyframes wave-text {
    00% {
      transform: translateY(0em);
    }
    60% {
      transform: translateY(-0.6em);
    }
    100% {
      transform: translateY(0em);
    }
  }

.titre {
    
    width: 300px;
    height: 300px;
    
}

.deuboutons {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15%;
    margin-bottom: 50px;
    width: auto;
    
    
}



.bouton {
    text-decoration: none;
    background-color: black;
    border: none;
    color: #bed5ed;
    text-align: center;
    display: inline-block;
    font-size: 40px;
    margin: 20px;
    
    padding: 30px;
    border: solid 2px;
    border-color: #bed5ed;
    transition: background-color 1s ease-out;
    transition: border-radius 1s;
    width: auto;
    height: auto;

}

.bouton:hover {
    background-color: #bed5ed;
    color: black;
    border-radius: 30px;
}



.banner {
    width: 100%;
    height: 600px;
}

footer {
    
    display: flex;
    flex-direction: row;
    
    align-items: center;
    justify-content: space-evenly;
    width: auto;
    min-height: 80px;
    background: #bed5ed;
    color: black;
    
    padding: 10px;
    margin: none;
    
}

img {
    width: 20px;
    height: 20px;
    padding-top: 5px;
    margin-top: 10px;
}

.text {
    text-decoration: none;
    color: black;
    font-size: larger;
    
    padding: 3px;
    margin: 5px;
    
    
}


.grhedi {
        background-color: #bed5ed ;
        font-family: 'Silkscreen', cursive;
        font-size: smaller;
        height: 100%;
        padding: 5px;
}

.avrilvert {
    text-decoration: none;
    color: black;
    
}

