* {
    background-color: #232323;
    color: #F6F6F6;

    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;
    font-weight: 400; */

    font-family: "Old Standard TT", serif;
    font-weight: 400;
}

body {
    margin: 0;
}

.content {
    margin: 64px 128px;
}

h1 {
    letter-spacing: 4px;
    margin-bottom: 12px;
}

ul {
    list-style-type: none;
}

li:before {
    content: "- ";
}

li {
    margin: 2px auto;
}

.emp {
    color: rgb(132, 219, 230);
}

.emp-red {
    color: rgb(230, 132, 161);
}

.subtext {
    margin-top: 24px;
}

.static > div { 
    margin: 64px 96px;
    padding: 24px;
    font-size: 1.25em;
    font-style: italic;
    display: inline-block;
    position: relative;
}

.static > div::before {
    content: "";
    position: absolute;
    inset: 0 -12px;
    background-color: #232323;
    transform: skewX(-12deg);
    transform-origin: left center;
    z-index: -1;
    pointer-events: none;
}

/* Responsive hero image */
.hero-media {
    display: block;
}

.hero-section {
	position: relative;
}

.hero-section > .static {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: transparent;
}

.hero {
    width: 100%;
    max-width: 1600px;
    height: clamp(45vh, 60vw, 80vh);
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 2000px) {
    .hero {
        max-width: 2000px;
    }
}

@media screen and (max-width: 1080px) {
    .content {
        margin: 84px;
    }
}

@media screen and (max-width: 640px) {
    .content {
        margin: 24px;
    }
}