/* Variables */

:root {
    --spacing-none: 0;
    --spacing-extra-small: .25rem;
    --spacing-small: .5rem;
    --spacing-medium: 1rem;
    --spacing-large: 2rem;
    --spacing-extra-large: 4rem;
    --spacing-extra-extra-large: 8rem;
    --spacing-extra-extra-extra-large: 16rem;
    --black-10: rgba( 0, 0, 0, .1 );
}

html {
    scroll-behavior: smooth;
    line-height: 1.15;
}
body {
    overflow: auto;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

div {
    box-sizing: border-box;
}


a {
    display: inline-block;
    text-decoration: none;
}
a > div {
    vertical-align: bottom;
}

.cursor-default {
    cursor: default;
}

img {
    max-width: 100%;
    border-style: none;
}