body {
    background: #000;
    color: #fff;
    font-family: Jura, "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
}

header {
    display: flex;
    flex-direction: column;
    background-image: url(/img/title.svg);
    background-size: cover;
    background-position: center;
    margin-left: 12%;
    margin-right: 12%;
    height: 450px;
}
header a {
    text-decoration: none;
    display: inherit;
}
header #title {
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: bold;
}
header #title #primary #pprimary {
    font-size: 64px;
    border-top: 2px solid white;
}
header #title #primary #sprimary {
    font-size: 32px;
    border-bottom: 2px solid white;
}
header #title #secondary {
    margin-top: 20px;
    font-size: 22px;
}
nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
    font-size: 32px;
}
nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
main {
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}
a {
    color: white;
}
main h2 {
    color: white;
    font-size: 32px;
}
#menu-icon {
    display: none;
}
@media(max-width: 940px) {
    header {
        background-position: center;
        background-size: cover;
        margin: 0;
        height: auto;
        margin-bottom: 40px;
        margin-top: 30px;
    }
    header #title {
        margin-top: 20px;
        background-color: black;
        padding: 20px;
    }
    header #title #primary #pprimary {
        font-size: 28px;
    }
    header #title #primary #sprimary, header #title #secondary {
        font-size: 18px;
    }
    #menu-icon {
        display: block;
    }
    nav {
        position: absolute;
        background: black;
        top: 5px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        padding: 8px;
    }
    nav ul li {
        padding: 8px;
        font-size: 18px;
    }
    nav:hover ul {
        display: flex;
    }
}
