.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*border: thin solid;*/
}

button {
    font-family: 'Nunito', Arial;
    width: 214px;
    height: 50px;
    padding: 10px;
    background: var(--main-color) 0% 0% no-repeat padding-box;
    color: var(--text-color-button);
    border: none;
    cursor: pointer;
    box-shadow: 0px 3px 10px var(--shadow);
    border-radius: 40px;
    opacity: 1;
    font-size: 20px;
    font-weight: bold;
    transition: .3s ease;
}

button:hover {
    background: var(--main-color-hover);
}

button:active {
    background: var(--main-color-hover);
    box-shadow: none;
    mix-blend-mode: var(--mix-blend-mode);
    opacity: 0.8;
    transition: none;
}