    /* !VARIABLES ============================================================== */
:root {
    --color-background: #F5F1E2;
    --color-text: #1E1C1A;
    --nb-green: #00C127;
    
    --basesize: 16px;
    @media screen and (min-width: 640px) { --basesize: 16px; }
    @media screen and (min-width: 1600px) { --basesize: 18px; }
    
    font-size: var(--basesize);
}

/* RESET =================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/* end of reset */
/* !Basics & Typography ==================================================== */

body {
    font-family: "Krub", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    background-color: var(--nb-green);
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Krub", sans-serif;
    font-weight: 700;
}

p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 640px;
    margin: 0 auto 2rem;
}
.mainHeader {
    width: 100%;
    height: 100%;
    display: block;
}
.siteTitle {
    display: block;
    width: 90%;
    max-width: 552px;
    height: 570px;
    background-image: url(/images/nb-logo-combo.png);
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    margin: 4rem auto 0;
}