body {
  font-family: "Tisa", Tisa Font;
  text-align: center;
  background-color: #ff000090;
  margin: 0;
  padding: 0;
}

/* Home */
#startImage {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 10px;
  max-height: 400px;
  /* Imposta l'altezza massima desiderata per le immagini */
  max-width: 200%;
  /* Imposta la larghezza massima desiderata per le immagini */
}

#startButton {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Game */
#game-container {
  width: 85%;
  margin: 10px auto;
  padding: 20px;
  background-color: #eaff00;
  border-radius: 10px;
}

#game-container h1 {
  font-size: 35px;
  background-image: linear-gradient(90deg, rgb(186, 186, 65) 46%, red 50%);
   /*Servono per il gradient */
   color: transparent;
   background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
}

#game-container {
  width: 90%;
  /* Modifica la larghezza per schermi più piccoli */
}

#game-image {
  width: 80%;
  height: 80%;
  margin-top: 20px;
  max-width: 85%;
  max-height: 85%;
}

img {
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  max-width: 200%;
  /* Imposta la larghezza massima desiderata per le immagini */
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #d74423;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 7px;
}

button:hover {
  background-color: #d74423cd;
}

#question {
  margin-top: -5px;
  margin-bottom: 20px;
  font-size: 23px;
}

#homeButton {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 10px;
}

.option {
  padding: 10px;
  margin: 5px;
  background-color: #e0e0e0;
  cursor: pointer;
}

@font-face {
  font-family: "Tisa Font";
  src: local("Tisa_Regular.woff2"),
    url("./media/font/TisaSansPro-Medium.woff2") format("woff2"),
    url("./media/font/Tisa\ Sans\ Pro\ Medium.woff") format("woff");
  font-weight: 400;
}

/* info button */
.info-container {
  position: relative;
}

#info-button {
  position: absolute;
  top: 8%;
  left: 8%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.info-window {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  top: 100px;
  left: 8%;
  width: 470px;
  max-width: fit-content;
  max-height: fit-content;
}

#close-button {
  margin-top: 7px;
  padding: 10px;
}