body {
    font-family: cursive;
    background: radial-gradient(circle at center, #fff 0%, rgb(246, 255, 146) 100%);
    color: #222;
    text-align: center;
    padding: 2rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  h1:hover{
    font-size: 1.8rem;
    border: 1px solid black;
    border-radius: 7rem;
  }
  .spinner {
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin-top: 2rem;
  }
  
  .slot {
    width: 200px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    background: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem;
  }
  
  button {
    background: #222;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
margin-top: 2rem;  }
  
  button:hover {
    background: rgb(255, 0, 0);
  }
  
  #prompt {
    margin-top: 2rem;
    display: none;
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    
  }

  
  