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

  .container-iframe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;margin-bottom:110px;
  }

  iframe {width: 560px;height: 315px;}

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

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

  #tournesol-logo img:hover + #infoText {
    display: block;
  }
@media screen and (max-width:687px) {
iframe {width: 90vw;height:auto;aspect-ratio: 16 / 9;}
}

  