body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
  }
  
  h1 {
    font-size: 24px;
    color: #333;
  }
  
  #history-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #555;
  }
  
  #history-list li {
    margin: 10px 0;
  }
  
  button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  button:hover {
    background-color: #45a049;
  }
  #wheel {
    transition: all 4s cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transition: all 4s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: center;
    -webkit-transform-origin: center;
    max-width: 600px;
    width: 100%;
    height: auto;
}