body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: radial-gradient(circle, #013A63, #011C2C);
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
/* Bulles - Fond fixe, elles ne défilent pas */
#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Placer le fond derrière le contenu */
    pointer-events: none; /* Empêche l'interaction avec le fond */
  }
  
  /* Bulles */
  .bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bubble-rise linear infinite;
  }
  
  /* Animation des bulles */
  @keyframes bubble-rise {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-100vh); /* La bulle va disparaître au-dessus de l'écran */
      opacity: 0;
    }
  }
  
.profile-container {
    background-color: #FFFFFF;
    color: #013A63;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

p {
    margin: 10px 0;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #F0F0F0;
    border: 2px solid #013A63;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: #A0A0A0;
    font-size: 14px;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    text-align: left;
    margin-top: 20px;
}

.info strong {
    display: block;
    margin-bottom: 5px;
}