/* Stile per la pagina */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  .container {
    margin-top: 50px;
  }
  
  h1 {
    color: #333;
  }
  
  #eggButton {
    background-color: #ffdd57;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #eggButton:hover {
    background-color: #f1c40f;
  }
  
  #counter {
    font-size: 18px;
    color: #555;
  }
  
  .egg {
    background-image: url('https://via.placeholder.com/100?text=Uovo');
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: 20px auto;
  }
  
  #prizeMessage {
    display: none;
    margin-top: 30px;
  }
  
  .hidden {
    display: none;
  }
  