/* Style the buttons */
button {
    padding: 12px 24px;
    background-color: #008CBA;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #006F9A;
}

/* Arrange the buttons */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button-container button {
    margin: 10px;
}