.button-white {
    font-weight: 500;
    font-family: 'DMsans-sb';
    font-size: 20px;
    line-height: 26px;
    padding: 8px 20px;
    color: #191919;
    background: #F2CFEE;
    border-radius: 4px;
    text-transform: none;
    border: 1px solid #191919;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.button-white:hover {
    background: #FDF8F4;
}

.button-white--small {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    padding: 4px 10px;
}

.button-dark {
    font-weight: 500;
    font-family: 'DMsans-sb';
    font-size: 15px;
    line-height: 26px;
    padding: 8px 20px;
    color: white;
    background: #F2CFEE;
    border-radius: 4px;
    text-transform: none;
    border: 1px solid white;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;

}

.button-dark:hover {
    color: #37302C;
    background: white;
    border: 1px solid #37302C;
}


a {
    color: #37302C;
    text-decoration: underline;
}