* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    background: #E4A111;
    font-family: sans-serif;
    font-family: 'Arimo', sans-serif;
}
a {
    text-decoration: none;
    color: #000;
    display: inline-block;
}

a.button {
    border: 3px #000 solid;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 5px 0px;
}

#logo {
    width: 380px;
    height: 300px;
    position: absolute;
    top: calc(50vh - 150px);
    left: calc(50vw - 190px);
}
#header {
    width: 100%;
    padding: 10px;
}

#header .logo-wrap {
    display:inline-block;
    width: 300px;
    height: auto;
}

#nav {
    text-align: right;
    width: calc(100% - 320px);
    display: inline-block;
}
#nav a {
    font-size: 2em;
    font-weight: 400;
    margin-right: 15px;
    text-decoration: underline;
}

.logo-svg {
    fill: #000000;
}
.sub-logo {
    font-weight: bold;
    font-style: italic;
    font-size: 1.35em;
    width: 100%;
    text-align: center;
    display: inline-block;
}

#header .sub-logo {
    font-size: 1em;
}

#logo img {
    width: 100%;
}
#logo div {
    margin-top: 20px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 32px;
}