body, html {
  margin: 0;
  padding: 0;
  background-color: #ffeb3b; /* giallo */
  font-family: Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

header h1 {
  color: red;
  font-size: 3em;
  margin: 20px 0 10px;
}

header h2 {
  font-size: 1.5em;
  font-style: italic;
  margin-bottom: 40px;
}

.main-image {
  width: 300px;
  max-width: 90%;
  height: auto;
  margin: 40px 0;
}

.buttons {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-play {
  background-color: red;
  color: white;
  font-size: 1.2em;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  height: 54px;         /* Fissa altezza */
  line-height: 54px;    /* Per allineamento verticale del testo */
  display: inline-block;
}

.icon-btn {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px; /* stessa altezza del bottone itch */
  width: 54px;  /* quadrato */
}

.icon-btn img {
  height: 100%;
  width: auto;
  object-fit: contain;
}


footer {
  margin-top: 60px;
  font-size: 0.8em;
  color: black;
}
