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

:root {
    --primary-color: #008CAB;
    --primary-color-dark: #003845;
    --primary-color-darker: #00191F;
    --gray: #cfcfcf;
    --gray-dark: #7d7d7d;
    --gray-darker: #4d4d4d;
    --surface: #f5f8fa;
    --ink: #0a1518;
    --muted: #617276;
    --line: #d8e2e5;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #fff;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
}

.eyebrow {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
.brand strong {
    font-family: 'Space Grotesk', sans-serif;
}

section {
    scroll-margin-top: 80px;
}
