/* --- Base --- */
html, body {
  width: 100vw;
  height: 100vh;
  margin:0;
}

body {
  display: flex;
  flex-direction: column;
}

/* --- Container principal --- */
#container {
  display: flex;
  flex: 6;
  align-items: flex-end;
  width: 90vw;
  margin: 0 auto;
  justify-content: center;
  user-select: none;
}

#evolution {
  width: 100%;
  max-width: 1500px;
  display: block;
  height: auto;
}

/* --- Container secondaires --- */
#container2 {
  flex: 4;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  width: 100%;
  user-select: none;
  flex-wrap: wrap;
}

.bonus {
  width: 100px;
  position: relative;
  margin: 10px;
}

.bonus img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#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;
}

.bonus img:hover + #infoText {
  display: block;
}

#tournesol-logo {
  position: fixed;
  right: 28px;
  bottom: 10px;
}

#moon-rainbow { transform: translateY(20px); }
#pets { transform: translateY(-20px); }
#autres { transform: translateY(7px); }

/* --- Media Queries --- */
@media screen and (max-width:687px) {
  html, body {overflow-y: hidden;

  }

  #container {
    width:auto;
    margin:0 0 0 0;
    justify-content:flex-start;
    background-color: red;
  }

  #container2{
    justify-content: space-evenly;
    margin:0 0 0 0;
    width:200%;
  }

  #evolution {
    width:auto;
    height:100%;
    max-width:auto;
  }

  .bonus img {
    width: 130px;
  }
}
