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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow: visible;
}

html.hero-locked,
body.hero-locked {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
}

body.hero-locked {
    position: fixed;
    inset: 0;
    width: 100%;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

a {
    color: inherit;
}

input {
    font-family: inherit;
}

ul {
    list-style: none;
}

#app {
    overflow: visible;
}

@media (max-width: 768px) {
    #app {
        padding-bottom: 0;
    }
}


.top-backdrop {
    position: relative;
    background-color: var(--backdrop-fallback);
    background-image: url('../images/mobileBgImage.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
