@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import "./colors.css";

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background-color: var(--body-bg-color, #FFFFFF);
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
}

#header-placeholder {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}