body {
    min-height: 200vh;
    max-width: fit-content;
}

h2 {
    color : black(63, 62, 62) ;
    text-align: center;
    font-size:30px;
    position: absolute;
    top: 40%;
    right: 3%;
    left: 50%;
}

a{
    text-align: center;
}

.image img {
    position: absolute;
    top: 1100px;
    left: 75px;
    width: 500px;
}

video{
    position: absolute;
    left: 5%;
    top: 120%;
}
/*---------------------------------------------------------------------------*/
/* SKIS */
/*---------------------------------------------------------------------------*/
div {
    height : 600 ;
    object-position: 50% 50%;
}

.card{
    width:500px;
    height: 655px;
    perspective: 800px;
    position: absolute;
    left: 4%;
    top: 23%;
}

.content-card {
    width:100%;
    height: 100%;
    overflow: hidden;
    size: absolute;
    border-radius: 15px;
    transition : all 0.45s ease-out ;

}
.content-card img {
    width:100%;
    height: 100%;
    object-fit: contain;
}

.achat img{
    height: 50%;
    position: absolute;
    top: 60%;
    right: 5%;
}

MArquee{
    scroll-behavior: auto;
    position: absolute;
    top: 230%;
}

/*---------------------------------------------------------------------------*/
/* MENU DE PAGES */
/*---------------------------------------------------------------------------*/
ul{
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    list-style-type: none ;
    margin: 0;
    padding: 0;
    width: auto;
    background-color: #283645;
    overflow: hidden;
}
li{
    float: left;
    font-family: cursive;
}


li a{


    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
}
li a:hover{
    background-color: #23b8f3;
}


/*---------------------------------------------------------------------------*/
/* ANIMATION ENTREE DE PAGE */
/*---------------------------------------------------------------------------*/




.container2 {
    max-width: 1600px;
    position: absolute;
    top: 15%;
    right: 16%;
}
h1 {
    text-transform: uppercase;
    color: lightgrey;
    font-weight: 500;
    color: transparent;
}
h1 span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: "";
    font-size: clamp(20px, 7vw, 120px);
}
h1 span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(-100%);
}
h1:nth-child(1) {
    font-weight: 300;
    animation: txt-appearance 0s 1s forwards;
}


h1:nth-child(1) span::after {
    background: lightgrey;
    animation: slide-in 0.75s ease-out forwards,
    slide-out 1s 1s ease-out forwards;
}




@keyframes slide-in {
    100% {
        transform: translateY(0%);
    }
}
@keyframes slide-out {
    100% {
        transform: translateY(100%)
    }
}
@keyframes txt-appearance {
    100% {
        color: black;
    }
}

/*---------------------------------------------------------------------------*/
/* Background */
/*---------------------------------------------------------------------------*/


:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
 
    color: black;
    background-color: rgb(78, 69, 69);
 
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
 
 
  .bouncing-blob {
    width: 32vw;
    aspect-ratio: 1;
    border-radius: 50%;
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    transform-origin: left top;
  }
 
  .bouncing-blob--blue {
    background: #eebc71;
  }
 
  .bouncing-blob--white {
    background: #e4d65b;
    z-index: 2;
    width: 15vw;
  }
 
  .bouncing-blob--purple {
    background: #e2d37c;
  }
 
  .bouncing-blob--pink {
    background: #dacc7e50;
  }
 
  .bouncing-blobs-container {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
 
  .bouncing-blobs-glass {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(140px);
    -webkit-backdrop-filter: blur(140px);
    pointer-events: none;
  }
 
  .bouncing-blobs {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
 
 
  @media (max-width: 1200px) {
    .bouncing-blobs-glass {
      backdrop-filter: blur(120px);
      -webkit-backdrop-filter: blur(120px);
    }
  }
 
  @media (max-width: 500px) {
    .bouncing-blob {
      width: 60vw;
    }
    .bouncing-blob--white {
      width: 30vw;
    }
    .bouncing-blobs-glass {
      backdrop-filter: blur(90px);
      -webkit-backdrop-filter: blur(90px);
    }


  }

  .menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #d13fb9;
    border: none;
    border-radius: 25px; /* Bords arrondis */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-button:hover {
    background-color: #992ac5;
    transform: scale(1.1);
}