@font-face {
    font-family: 'BebasNeueRegular';
    src: url(./ressources/fonts/bebas-neue-v9-latin-regular.eot);
    src: url(./ressources/fonts/bebas-neue-v9-latin-regular.eot?#iefix) format('embedded-opentype'),
         url(./ressources/fonts/bebas-neue-v9-latin-regular.woff) format('woff'),
         url(./ressources/fonts/bebas-neue-v9-latin-regular.ttf) format('truetype'),
         url(./ressources/fonts/bebas-neue-v9-latin-regular.svg) format('svg');

    font-weight: normal;
    font-style: normal;
}

  html, body {
    height: 100%;
    cursor: pointer;
  }
  
  body {
    overflow-y: scroll;
  }

  main{
    height: 450vh;
  }

  h1, h2, h3, h4, h5, .bebas{
    font-family: 'BebasNeueRegular', sans-serif;
  }

  .link{
    color:#fff;
    font-weight: bold;
  }

  .link:hover{
    color:#fff;
  }
  
  .page-bg,
  .animation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .page-bg {
    background: linear-gradient(#000, #151515);
    background-size: cover;
    z-index: -1;
  }

  .page-wrapper {
    text-align: center;
    color: #fff;
    z-index: 2;
  }

  @media screen and (min-width: 900px) {
    #join-club {
      margin-left: 6% !important;
    }
  }

  #join-club{
    position: relative;
    color: rgba(60, 60, 60, 0.268);
    font-size: 3.5em;
    padding-top: 10px;
    text-decoration: none;
    transition: all 0.8s ease-in-out 0.2s;
  }

  #join-club:before {
      content: attr(data-text);
      position: absolute;
      overflow: hidden;
      max-width: 7em;
      white-space: nowrap;
      color: #ffffff;
      animation: loading 3s linear;
  }

  #join-club:hover{
    transform: scale(1.4);
  }

  #join-club > span{
    background-image: url('./ressources/icons/verre_coktail.png');
    background-size: 100px;
    height: 100px;
    width: 100px;
    display: block;
    margin-top: -20px;
    float: right;
    transition: all 1s ease-in-out 0.6s;
    visibility: hidden;
  }

  #join-club:hover > span{
    transform: translate(-120%, 100%);
    margin-top: -35px;
  }

  .navbar-toggler-icon{
    color: #fff;
  }

  .navbar-mobile{
    background-color: black;
    box-shadow: 0px 0px 20px 20px rgb(0 0 0);
  }

  .show .nav-link{
    background-color: rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.2);
    margin: 7px;
  }

  #menu-items{
    margin-right: 6%;
    margin-top: 4.5%;
    font-size: 2.5em;
  }

  #menu-items > li{
    margin-left: 50px;
  }

  #menu-items span{
    transition: all .2s ease-in-out;
    color: #d5d5d5;
  }

  #menu-items span:hover{
    color: white;
    transform: scale(1.1);
  }

  #menu-items .active{
    color: white;
    transform: scale(1.1);
  }

  .navbar-toggler{
    outline: none !important;
  }

  