.push-button {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    border: 2px solid #d6c7a3;
    background-color: #dbcfb1;
    color: #ada387;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0px 2px 5px #ada387;
    transition: background-color 0.2s ease;
}

.push-button:hover {
    color: #eee1c4;
}

.push-button-pressed {
    background-color: #ada387;
    border-color: #c3b797;
    color: #d6c7a3;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.3);
}