/* CSS */
/* Global styling */
body {
  font-family: sans-serif;
  text-align: center;
  background-color: #f7f1e3;
  margin: 0;
  padding: 20px;
}

/* Title style */
h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* Controls (dropdown) styling */
#controls {
  margin-bottom: 20px;
}

/* Dropdown select */
select {
  padding: 6px 10px;
  font-size: 14px;
}

/* Button container layout */
#buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
}

/* Button appearance */
button {
  flex: 1;
  padding: 100px 0;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background-color: #ffb142;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

/* Button pressed effect */
button:active {
  transform: scale(0.96);
}

/* Responsive layout for small screens */
@media (max-width: 500px) {
  button {
    font-size: 14px;
    padding: 50px 0;
  }
  h1 {
      font-size: 20px;
  }
}
