@import url('https://fonts.googleapis.com/css?family=Work+Sans:200,300,400,600,700&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Work Sans', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}
html, body {
    min-height: 100vh;
    line-height: 1;
    position: relative;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(24,24,24,1) 75%);
}

* {
    --headings-color: #ddccff;
    --text-color: #fff;
    --accent-color: #ccaaff;
    --lighter-accent-color: #ddbbff;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--headings-color);
    font-weight: 700;
    margin-bottom: 1rem;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 1rem; }
p {
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-color);
}


.container {
    width: 75rem;
    min-height: 100%;
    margin: 0 auto;
    display: flex;
}

a {
    color: var(--lighter-accent-color);
    transition: color 0.1s ease-in-out;
}
a:hover {
    color: var(--accent-color);
}
strong {
    color: var(--headings-color);
    font-weight: 700;
}
section {
    width: 100%;
    padding: 4rem 0;
    position: relative;
}
.sectionAnchor {
    position: absolute;
    top: -4rem;
    left: 0;
    display: block;
    width: 0;
    height: 0;
}

.button {
    font-size: 1.5rem;
    color: var(--headings-color);
    background-color: var(--accent-color);
    transition: all 0.1s ease-in-out;
    padding: 0.25rem 2rem 0 2rem;
    height: 3rem;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.button:hover {
    color: var(--text-color);
    background-color: var(--lighter-accent-color);
}


header {
    height: 4rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 1rem 0 rgba(0,0,0,0.0625);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}
header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mainMenu a {
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
}

.burger, .mobileMenu {
    display: none;
}






.dummyPage {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dummyPage svg {
    width: 30vw;
    color: #fff;
}
.dummyPage p {
    margin-top: 2rem;
    font-weight: 100;
    font-size: 2rem;
    margin-bottom: 0;
}



@media all and (max-width: 1279px) {
    body {
        font-size: 14px;
    }
}
@media all and (max-width: 730px) {
    body {
        font-size: 16px;
    }
    .container {
        width: 100%;
        padding: 0 1px;
    }
    .dummyPage svg {
        width: 80vw;
    }
    .dummyPage p {
        font-size: 1.25rem;
    }
}