/* Explain: Base reset and typography defaults for the coaching site. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--background-color);
}

::selection {
    background: var(--coral-color);
    color: #ffffff;
}

.font-heading {
    font-family: var(--font-heading);
}

input,
textarea,
select,
button {
    font-family: var(--font-body);
}

:focus-visible {
    outline: 3px solid rgba(246, 196, 83, 0.85);
    outline-offset: 3px;
}
