.card{
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-right: 20px;
    border-radius: 0px 7px 15px 7px;
}

.card_button_dark {
    cursor: pointer;
    background: #546747;
    color: #E2BE62;
    border: none;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 15px;
}

.card_button_dark:hover {
    color: #ffffff;
}

.card_button_light {
    cursor: pointer;
    background: #cec195;
    color: #2b331f;
    font-weight: bold;
    border: none;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 15px;
}

.card_button_light:hover {
    color: #fff;
}

.card_dark{
    background: #546747;
    color: #f5d9ab;
}

.card_light{
    background: #cec195;
    color: #2b331f
}

.details_dark{
    color: #f5d9ab;
}

.details_light{
    color: #2b331f;
}

.title_dark{
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

.title_light{
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2b331f;
}