body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f8ae00, #ebff33);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.coin-toss {
  background: #f5b402;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 300px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

#result {
  font-size: 1.5rem;
  color: #333;
  margin: 20px 0;
}

button {
  background-color: #fc5725;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #ff6f16;
  padding: 26px;
}

