body {
    margin: 0;
    padding: 0;
    background-color: #edf3cb; /* Khaki clair pour le côté jaune/gris saturé */
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center;     /* Centrage vertical */
  }

  .container {
    display: flex;
    align-items: center; /* Alignement vertical entre image et texte */
    gap: 20px; /* Espace entre l'image et le texte */
    /*background-color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);*/
  }

  .message {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 300px;
  }

  .message strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .message a {
    color: #9146FF; /* Couleur violette typique de Twitch */
    text-decoration: none;
    font-weight: bold;
  }

  .message a:hover {
    text-decoration: underline;
  }

  .logo {
    height: 200px; /* Hauteur de l'image = hauteur approximative du texte */
    object-fit: contain;
  }