/* Explain: Base reset and typography defaults for the restaurant site */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(200, 162, 74, 0.22), transparent 32rem),
        linear-gradient(180deg, var(--background-color), #efe0c2 100%);
}

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

::selection {
    background: var(--gold-color);
    color: var(--charcoal-color);
}

button,
a,
select,
input,
textarea {
    font: inherit;
}

a {
    text-decoration: none;
}

section[id] {
    scroll-margin-top: 110px;
}
