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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-weight: 400;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
}
h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 123%;
    color: #111723;
}
h2 {
    font-weight: bold;
    font-size: 23px;
    line-height: 139%;
    color: #111723;
}
h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 140%;
    color: #5e687c;
}
p {
    font-size: 18px;
    line-height: 144%;
    color: #5e687c;
    padding-bottom: 16px;
}
.marmotButton {
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    position: relative;
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    background-color: #083572;
    border: solid #083572 1px;
    color: white;
}
.marmotButton:hover:not(.disabled),
.marmotButton:focus:not(.disabled) {
    background-color: #002b49;
}
a {
    color: #111723;
}
