body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
  }

  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 5px solid black;
    width: 500px; 
    text-align: center;
    margin-bottom: 20px;
  }

  .text-container {
    font-size: 37px;
  }

  .image-container {
    width: 20%; 
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  #infoText {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #567be0;
    color: rgb(255, 251, 0);
    padding: 5px;
    display: none;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
  }

  img:hover + #infoText {
    display: block;
  }

  #tournesol-logo {
    position: fixed;
    right: 28px;
    bottom: 10px;
  }

  .friends-list {
    margin-top: 20px;
    text-align: center;
    width: 500px;
  }

  .friends-list h3 {
    margin-bottom: 10px;
    font-size: 23px;
  }

  .friends-list ul {
    list-style-type: none;
    font-size: 20px;
    padding: 0;
  }

  .friends-list li {
    margin: 5px 0;
  }

  .friends-list a {
    color: #567be0;
    text-decoration: none;
  }

  .friends-list a:hover {
    text-decoration: underline;
  }