:root {
    --color_golden: #C5A880;
    --color_black: #000000;
    --color_white: #FDF7E9;
    --color_gray: #B0B0B0;
    --color_red: #c35353;
    --color_green: #5bc353;
    --font_title: "Playfair Display", serif;
    --font_text: "Montserrat", serif;
}

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

h1,h2,h3 {
    font-family: var(--font_title);
    letter-spacing: 2px;
}

p, a, span, label, input, textarea, select, option, li, button {
    font-family: var(--font_text);
    font-size: 1.1rem;
}

.main {
    width: 100%;
    height: auto;
}