/* === General Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* === Body Styling === */
body {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* === Heading Styling === */
h2 {
  margin: 10px 0;
  font-weight: 500;
  text-align: center;
}

/* === Button Styling === */
button {
  background: #fff;
  color: #4e54c8;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:hover {
  transform: translateY(-2px);
  background: #f1f1f1;
}

button:active {
  transform: translateY(0);
}

/* === Container Styling === */
.container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* === Result Highlight === */
#result {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffeb3b;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
