body {
  font-family: Arial, sans-serif;
  background-color: #4B0082;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  margin: 0 auto;
  padding: 0;  
}

input {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border-radius: 5px;
  border: none;
  outline: none;
}

button {
  padding: 10px 20px;
  margin-top: 5px;
  background-color: #82034B;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #3700b3;
}

#eightBall {
  width: 250px;
  height: 250px;
  margin: 20px auto 0;
  background-color: black; 
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    inset -20px -20px 40px rgba(0,0,0,0.6), /* rich shadow */
    inset 20px 20px 40px rgba(255,255,255,0.1), /* subtle highlight */
    0 15px 30px rgba(0,0,0,0.7); /* drop shadow */
}


#innerCircle {
  width: 160px;
  height: 160px;
  background-color: #170027; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#answer {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  padding: 8px;
}
