body {
    background-color: #121212;
    color: white;
  }
  h1 {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
  }

  p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .list-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  hr{
    width: 100%;
    margin-top: 20px;
    color: white;
    background-color: white;
  }
button{
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px; 
    font-size: 1.2rem;
    z-index: 9999;
}
#iframe {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  #game_webview_container {
    position: relative; /* Permet de positionner le bouton "Retour" par rapport à ce conteneur */
    width: 100%;
    height: 100%;
    display: none;
}

.backbutton {
    position: absolute;
    top: 20px; 
    left: 20px; 
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
}

  #homepage {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  
  #homepage.hide {
    opacity: 0;
  }
