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

  #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;
  }

  .concert-list {
  margin-top: 20px;
  text-align: left;
  max-height: 90vh;
  padding-right: 10px;
  color: #0f46df;
  }

  .concert-list h3 {
    margin-bottom: 10px;
    font-size: 23px;
    color: black;
  }

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

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

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

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