body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffcc99;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
  }
  
  h1 {
    font-size: 2.5em;
    color: #8b5e3c;
    margin-bottom: 20px;
  }
  
  .images {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .game-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .game-image:hover {
    transform: scale(1.1);
  }
  
  #message {
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
  }
  
  #attempts {
    margin-top: 10px;
    font-size: 1.1em;
  }
  