body{
  background-color: antiquewhite; 
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color : rgb(255, 102, 0);
  font-family: 'Short Stack';
}

#headbox{
  background-color: white;
  height: 300px;
  width: 700px;
  text-align: center;
  font-size: 1.25rem;
  border-radius: 30px;
  font-family: 'Short Stack';
}

#ans1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px;
}

#ipt{
  height: 30px;
  width: 200px;
}

#text{
  color: black;
}

body {
  text-align: center;
  background-color: #ffcc8e;
  font-family: 'Short Stack';
}

.button {
  position: relative;
  display: inline-block;
  margin: 50px 20px ;
  padding: auto;
  font-family: 'Short Stack';
}

.button button {
  color: white;
  font-size: 16px;
  height: 40px;
  width: 145px;
  background-color: #FFA12B;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Short Stack';
  border: none;
  border-radius: 6px;
  outline: none;

  display: flex;
  align-items: center;
  justify-content: center;

  text-shadow: 0px 1px 0px #000;

  box-shadow:
    inset 0 1px 0 #FFE5C4,
    0 6px 0 #915100;

  transition: all 0.08s ease-in-out;
}

/* Pressed↓ */
.button button:active {
  top: 6px;
  background-color: #F78900;
  box-shadow:
    inset 0 1px 0 #FFE5C4,
    inset 0 -2px 0 #915100;
}

/* Bottom base shadow */
.button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: -3px;
  bottom: -10px;
  z-index: -1;

  background-color: #2B1800;
  border-radius: 6px;
  padding: 3px;
}

/* ✅ New CSS for placing buttons side-by-side */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -20px;
}
