@keyframes flotter {
    0% { transform: translateY(0);
    }
    50% { transform: translateY(-5px);
         }
    100% { transform: translateY(0);
        }
  }
  
  
*, *::before, *::after {
    box-sizing: border-box;
    }

body {
  margin: 0;
  height: 100%;
  position: relative;
}

.popup-accueil{
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgb(1 15 52), rgb(32 63 136));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: fixed; /* Fixe sur tout l’écran */
    inset: 0;         /* top: 0, right: 0, bottom: 0, left: 0 */
    z-index: 9999;    /* Pour être tout au-dessus */
  gap: 50px;
  
    overflow: hidden;   /* Évite un scroll interne */
  }

  .texte {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;


  }
  
  .lettre {
    color: white;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #0062ff, 0 0 30px #0088ff,
      0 0 40px #00a6ff, 0 0 50px #0044ff;
    animation: flotter 1.5s infinite ease-in-out;
    font-size: clamp(3rem, 10vw, 10rem); /* Responsive font */
    margin: 0;
    transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .bio {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: white;
    margin-top: 2rem;
    max-width: 700px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

.lettre:hover{
  color: #ffffff; /* Change la couleur pour renforcer l'effet */
  text-shadow: 0 0 10px #fff, 0 0 20px #ffffff, 0 0 30px #ffffff,
    0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #ffffff;
  cursor: default;
}

.boutton-accueil{
    border: white 3px solid;
    color: white;
    padding: 15px;
    background: none;
    font-size: 2em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; 
    text-decoration: none;
    transition: all 0.2s;
}

.boutton-accueil:hover{
    cursor:pointer;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #0062ff, 0 0 30px #0088ff,
      0 0 40px #00a6ff, 0 0 50px #0044ff;
}

/* Responsive de l'image, c'est vraiment relou à gérer :((*/

img{
  position: absolute;
  left:15%;
  bottom: 10%;
  width: 30vh;
}

@media (max-width: 1300px) {
  img{
    left: 8%;
    bottom: 7%;
  }}

  @media (max-width: 875px) {
  img{
    left: 1%;
    bottom: 15%;
    width:25%;
  }}