:root {
  --accent-color: #05629f;
}

body,input,select,textarea {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    color: #000;
    font-size: 19px;
}

.flex{
    display: flex;
}

view,header,footer{
    max-width: 1024px;
    display: block;
    margin: auto;
}

h1,h2,h3,h4,h5{
    font-weight: 600;
}

view {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.07;
}

.row {
    margin-bottom: 48px;
}

h1 {
    margin: 48px 0px;
}

a {
    text-decoration: none;
    font-weight: 500;
    color: var(--accent-color);
}

footer {
    margin: 64px auto;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 0px;
}

footer .copyright {
    font-size: 0.85em;
    text-align: center;
    font-weight: 400;
    color: #555;
}

h2 {
    margin-bottom: 0;
    font-size: 1.25em;
    color: #222;
}

p {
    margin: 16px 0px;
    font-size: 0.95em;
}

.hide{
    display: none;
}

header .big {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: stretch;
    position: fixed;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

a.menu-open {
    display: none;
}
header .menu-small.big  {
    display: flex;
}

@media (max-width: 768px) {
    a.menu-open {
        display: block;
    }
    header .menu-small {
        display: none;
    }
}