h1, h2, p, nav ul {
    margin: 0;
    padding: 0;
}

nav ul {
    list-style-type: none;
}

body {
    background-color: #ae2326;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

#header-images {
    display: grid;
    grid-template-columns: 140px auto;
    align-items: center;
    max-height: 140px;
    width: 100%;

}

.logo:first-of-type {
    width:140px;
    height: 140px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 20vw;
    color: #ae2326;
    background: #ae2326;
    text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px 0px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff, 0px -2px 0 #fff;
}

header h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 6.5vw;
    position: relative;
    top: -4vw;
    text-indent: -1vw;
}
main {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 110px auto;
}
main h2.links {
    text-transform: uppercase;
    font-weight: 400;
    transform: rotate(90deg);
    transform-origin: left top;
    white-space: nowrap;
    position: relative;
    left: 1.8em;
    font-size: 3em;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: .25em;
    font-size: 1.25em;
}

#lj {
    background-color: white;
    padding: 20px;
}

#lj .intro {
    color: #666;
    border-bottom: 5px solid #ae2326;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#lj .intro h2 {
    font-weight: 400;
    margin-bottom: .5em;
}

#lj .intro p:not(:last-of-type) {
    margin-bottom: 1em;
}

#lj .intro a {
    text-decoration: none;
    font-weight: 700;
    color: #333;
}

footer {
    text-align: center;
    padding: 50px 0;
}

footer a {
    color: #ebebeb;
    font-weight: 700;
}

@media screen and (min-width: 630px) {
    main nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    main {
        height: 700px;
    }
}

@media screen and (min-width: 760px) {
    main nav ul {
        display: block;
    }
    #wide {
        display: grid;
        grid-template-columns: 360px auto;
    }
}

@media screen and (min-width: 960px) {
    #container {
        width: 960px;
        margin: auto;
    }
    header h1 {
        font-size: 192px;
    }
    header h2 {
        font-size: 62.4px;
        top: -38.5px;
    }
}