@font-face {
    font-family: 'Injurial';
    src: url("fonts/InjurialTrial-Regular.woff") format("woff"),
        url("fonts/InjurialTrial-Regular.otf") format("opentype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spectral', serif;
    text-rendering: geometricPrecision;
}

body {
    -moz-font-feature-settings: "liga=1, dlig=1";
    -moz-font-feature-settings: "liga", "dlig";
    -ms-font-feature-settings: "liga", "dlig";
    -o-font-feature-settings: "liga", "dlig";
    -webkit-font-feature-settings: "liga", "dlig";
    font-feature-settings: "liga", "dlig";
    background-color: #fff8f7;
    overflow-wrap: break-word;
}

h1,
h2 {
    font-family: 'Injurial';
    font-weight: normal;
    letter-spacing: 6px;
}

h1 {
    font-size: 15vw;
    line-height: 1em;
    padding-bottom: 2vw;
}

h2 {
    font-size: 5vw;
    line-height: 1em;
    text-align: center;
}

p {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.1px;
    font-weight: 300;
    font-variant-numeric: proportional-nums;
}

.small-caps {
    font-family: 'Spectral SC', serif;
    font-weight: 500;
}

p.title,
p.info {
    font-family: 'Red Hat Mono', monospace;
    letter-spacing: .2px;
    font-size: 11px;
    line-height: 16px;
}

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

.vert img,
.horiz img {
    max-height: 85vh;
}

.vert,
.horiz {
    margin: 0 auto;
}

.vert {
    height: 85vh;
}

.horiz {
    max-width: 75vw;
}

.intro-wrap {
    width: 100%;
    min-height: 100%;
    margin: auto;
    /* padding-bottom: 12vw; */
}

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* .intro-text::before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: 1vw;
    left: 1vw;
    right: 1vw;
    bottom: 1vw;
    border: 5px solid #000000;
} */

/* .intro-img {
    position: absolute;
    width: 30vw;
    height: auto;
    top: calc(50% - 15vw);
    left: calc(50% - 15vw);
    z-index: -10;
} */

.content-wrap {
    margin: 2vw;
}

.caption-wrapper {
    margin: 4vw auto 0;
    text-align: center;
    display: block;
}

.title {
    padding-bottom: 10px;
}

.text-wrap {
    width: 70%;
    max-width: 650px;
    margin: 26vw auto 27vw;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 23vw;
    }

    p {
        font-size: 18px;
        line-height: 28px;
    }

    .content-wrap {
        margin: 5vw;
    }

    .text-wrap {
        width: 100%;
    }

    .vert {
        max-height: 85vh;
        height: auto;
    }

    .horiz {
        max-width: 100%;
    }

    .caption-wrapper {
        margin-top: 6vw;
    }
}