body {
  font-family: Arial, sans-serif;
}

.button {
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: white;
  padding: 10px 20px; /* Increase padding for better appearance */
  margin: 10px 5px;   /* Add margin to space between buttons */
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  opacity: 70%;
}
#buttons {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Center buttons horizontally */
  align-items: center; /* Center buttons vertically */
  gap: 10px; /* Add space between buttons */
}
.small {
  font-size: 12px;
  width: 150px; /* Set fixed width for uniform button sizes */
}
.grey {
  background-color: #6C6C6C;
}
.black {
  background-color: black;
}
.orange {
  background-color: #F16624;
}
/* Center the buttons using flexbox */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh; /* Full height of the viewport */
}
button:hover{
  opacity:100%;
}