.content {
    box-sizing: border-box;
    width: 100%;
    position: relative;
}
.content > div {
    position: absolute;
    width: 800px;
    max-width: 80vw;
    left: 50%;
    translate: -50% 0;
    box-sizing: border-box;
}
.header {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    background-size: cover;
    background-position: 0 0;
    border-radius: var(--rad);
}
.header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--spec-black) 120px);
}
.content > div:not(header) {
    padding: 30px;
    padding-top: 100px;
}
img:not(.header) {
    max-width: 100%;
    max-height: 50vh;
    margin: 5px;
}
.content > div > h1 {
    color: var(--spec-orange);
}

br {
    content: "";
    margin: 2em;
    display: block;
    font-size: 5px;
}

sub {
	position: relative;
	text-decoration: none;
}
sub::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	translate: -50% 0;
	width: 100%;
	background-color: var(--spec-orange);
	height: 40%;
	z-index: -1;
	transition: 0.2s;
}

blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0;
    padding: 5px;
}
blockquote > * {
    margin: 0;
}