h1{
    font-size: 4em;
    text-align: center;
    margin-top: 0;
  }

h2{
  margin: auto;
}

h3{
  text-align: center;
}

  .logo{
    width: 50%;
    margin: auto;
  }

  main{
    font-size: 2em;
    margin: 0 25px 10px 25px;
    text-align: center;
  }

.recent{
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    row-gap: 10px;
    width: 80%;
    margin: auto;
}

.item{
  display: flex;
  width: 30%;
    flex-flow: column nowrap;
    justify-content: space-around;
    border: solid 2px white;
    margin: auto;
}

.item img{
  width: 100%;
}

.bouton{
    animation: flicker 2.5s infinite alternate;
    color: white;
    text-align: center;
    min-width: 200px;
    max-width: 700px;
    height: 90px;
    font-size: 4em;
    padding: 0 20px 0 20px;
    margin: 20px 0 20px 0;
  }
  
  .bouton:hover{
    cursor: pointer;
  }
  @keyframes flicker {
      0%,19%,21%,23%,25%,54%,56%,to {
          text-shadow: -.2rem -.2rem 1rem #fff,.2rem .2rem 1rem #fff,0 0 2rem #0016ee,0 0 4rem #0016ee,0 0 6rem #0016ee,0 0 8rem #0016ee,0 0 10rem #0016ee;
          box-shadow: 0 0 .5rem #fff,inset 0 0 .5rem #fff,0 0 2rem #fe00fe,inset 0 0 2rem #fe00fe,0 0 4rem #fe00fe,inset 0 0 4rem #fe00fe
      }
  
      20%,24%,55% {
          text-shadow: none;
          box-shadow: none
      }
  }