*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }
  
h1{
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 40px;
    filter: drop-shadow(1px 1px 10px #487fff)
}
h2{
    color: rgb(3, 222, 3);
    margin-top: 20px;
}
  .container {
    text-align: center;
  }
  
  .wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0 40px;
  }
  
  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .option {
    width: 180px;
    height: 180px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #spinButton {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #0712ec;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 10px;
    padding: 20px 40px;
  }
  
  #result {
    margin-top: 20px;
    font-size: 24px;
  }
  