:root {
    --font-color-default: #1E1E24;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    list-style: none;
    line-height: 1;
    border-radius: 0;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}
html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
}
body {
    color: var(--font-color-default);
    font-family: 'Geologica', Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 1.8rem;
    background-color: #fff;
    word-wrap: break-word;
    width: 100%;
    height: 100%;
}
a,
button {
    cursor: pointer;
}
.spacing {
    flex-shrink: 1;
    width: 100%;
    height: 100%;
}
.root {
    width: 100%;
    position: relative;
    padding-top: .6rem;
    padding-bottom: .6rem;
}