* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-bg: #fff;
    --text-color: #333333;
    --gold-color: #CDA434;
    --gold-color-btn: #CDA43480;
    --gold-color-hover: #be982e;
    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--main-bg);
    color: var(--text-color);
    line-height: 1.6;
    margin-top: 105px;
}

@media (max-width: 900px) {
    body {
        margin-top: 80px;
    }
}

.button {
    backdrop-filter: blur(5px);
    display: inline-block;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: #ffffffbb;
    border-radius: 0;
    padding: 18px 80px 20px;
    transition: all 0.7s ease-out;
    background: linear-gradient(270deg, rgba(223, 190, 106, 0.8), rgba(146, 111, 52, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    text-decoration: none;
    margin: 0.625rem;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.button:hover {
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0);
    background-position: 99% 50%;
}

.button-2 {
    backdrop-filter: blur(5px);
    display: inline-block;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: #ffffffbb;
    border-radius: 0;
    padding: 18px 80px 20px;
    transition: all 0.7s ease-out;
    background: linear-gradient(270deg, rgba(223, 190, 106, 0.8), rgba(146, 111, 52, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 99% 50%;
    background-size: 300% 300%;
    text-decoration: none;
    margin: 0.625rem;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.button-2:hover {
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-position: 1% 50%;
}