@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --aunare-purple: #4c1f51;
    --aunare-green: #4f9e63;
    --aunare-turquoise: #2babe3;
    --dark-text: #4a4a4a;
    --medium-text: #6f685e;
    --light-border: #e0e0e0;
    --background-cream: #f2ede4;
    --white: #ffffff;
    --gold: #cdbba2;
    --page-max: 74rem;
    --page-gutter: 1.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 20rem;
    margin: 0;
    color: var(--medium-text);
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--white);
}

button,
input {
    font: inherit;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    /* color: inherit; */
    text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
figure,
address {
    margin: 0;
}

address {
    font-style: normal;
}

main {
    overflow: hidden;
}

.sr-only {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (min-width: 992px) {
    :root {
        /* --page-gutter: 7.5rem; */
        --page-max: 68rem;
    }
}
