.button-container {
    display: flex;
}

button {
    background-color: #ff592b;
    font-size: 1.2em;
    align-items: center;
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    height: 50px;
    justify-content: center;
    padding-left: 32px;
    padding-right: 32px;
    transition: transform .2s;
    white-space: nowrap;
    margin: 10px;
    transition: background-color 0.5s ease;
}

button:hover {
    transform: scale(1.05);
}

button#unselected {
    background-color: #ff592b42;
    pointer-events: none;
}
