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

* {
    font-family: "Coconat";
    text-transform: none;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
}

html.lenis,
html.lenis body {
    height: auto;
    scroll-padding-top: calc(20px + 10vw);
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

@font-face {
    font-family: "Coconat";
    src: url("../fonts/Coconat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    font-size: 16px;
    --color-text: #fff;
    /* --color-bg: rgb(96 111 140); */
    --color-bg: rgb(33, 40, 55);
    --color-link: #fff;
    --color-link-hover: #fff;
    --page-padding: 1rem 2rem;
}

body {
    margin: 0;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture {
    border-radius: 4rem;
    /* width: 100%;
    height: auto; */
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    color: var(--color-link-hover);
    outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
    /* Provide a fallback style for browsers
	 that don't support :focus-visible */
    outline: none;
    background: lightgrey;
}

a:focus:not(:focus-visible) {
    /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
    background: transparent;
}

a:focus-visible {
    /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
    outline: 2px solid red;
    background: transparent;
}

ul {
    padding-inline-start: 0px;
}

h1,
h2,
h3 {
    margin-block-start: 0;
    margin-block-end: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

button {
    all: unset;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
}