@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Playfair+Display:wght@400;500&display=swap');

:root {
    --color-white: #f7f4ed;
    --color-dark: #171512;
    --color-wine: #4c161d;
    --color-earth: #8d7152;

    --font-serif: "Playfair Display", serif;
    --font-sans: "DM Sans", sans-serif;

    --page-padding: clamp(42px, 5.5vw, 100px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}