:root {
    --bz-color-white: #FFF;
    --bz-color-black: #000;
    --bz-color-lgray: #EFEFEF;
    --bz-color-accent: #009846;
    --bz-color-accent-hover: #00813c;
    --bz-color-extra-accent: #427E5E;
    --bz-border-radius: 10px;
    --bz-button-height: 40px;

    --bz-font: 'Montserrat', sans-serif;

    --bz-03-seconds: all .3s cubic-bezier(.5,0,.5,1);
    --bz-02-seconds: all .2s cubic-bezier(.5,0,.5,1);
    --bz-01-seconds: all .1s cubic-bezier(.5,0,.5,1);
    
    --bz-max-width: 994px;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
    font-family: var(--bz-font);
}
body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: var(--ui-st-color-white);
}
div {
    display: block;
}
a {
    color: var(--bz-color-accent);
    text-decoration: none;
}
a:hover {
    color: var(--bz-color-accent-hover);
}
p {
    margin: 0;
}
main {
    width: 100%;
    height: 200vh;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Thin.otf");

    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-ExtraLight.otf");

    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Light.otf");

    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Regular.otf");

    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Medium.otf");

    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-SemiBold.otf");

    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Bold.otf");

    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-ExtraBold.otf");

    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Black.otf");

    font-weight: 900;
    font-style: normal;
}