:root {
    --big-logo-height: 125px;
    --small-logo-height: 50px;
    --big-logo-padding: 8px;
    --small-logo-padding: 4px;
    font-variant-numeric: oldstyle-nums;
}



.big-logo {
    height: var(--big-logo-height);
    border-bottom: 1px solid black;
    background-color: white;
    display: flex;
}
.header {
    height: var(--small-logo-height);
    border-bottom: 1px solid black;
    background-color: white;
    display: flex;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
}

main {
    padding-top: calc(var(--big-logo-height) + var(--small-logo-height));
}

.big-logo img {
    height: calc(var(--big-logo-height)-2*var(--big-logo-padding));
    filter: invert(1);
    margin-left: auto;
    margin-right: auto;
    padding: var(--big-logo-padding);
}

.header img {
    height: calc(var(--small-logo-height)-2*var(--small-logo-padding));
    filter: invert(1);
    opacity: 0;
    margin-left: auto;
    margin-right: auto;
    padding: var(--small-logo-padding);
}

span.menu {
    padding-left: 1rem;
    padding-top: 1rem;
    font-weight: bold;
}

span.order {
    padding-right: 1rem;
    padding-top: 1rem;
    font-weight: bold;
}

nav {
    position: fixed;
    padding: 10px;
    height: 70vh;
    width: 200px;
    left: -210px;
    top: calc(var(--big-logo-height) + 5px);
    background-color: white;
    border: 1px solid black;
    z-index: 2;
}

.close {
    text-align: right;
}

.menu:hover {
    cursor: pointer;
}

.close:hover {
    cursor: pointer;
}

main {
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 0 auto;
}

.stories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; 
}

.hero {
    margin-bottom: 1rem;
}

.hero-caption {
    color: #fff;
    position: absolute;
    bottom: 40%;
    width: 100%;
}

.hero-caption div {
    display: flex;
}

.hero-caption span.title {
    font-family: "minion-3-display", serif;
    background-color: rgba(0, 0, 0, 0.45);
    font-weight: 300;
    margin: 0 auto;
    font-size: 3rem;
    font-style: italic;
    margin-bottom: .5rem;
}

.hero-caption span.author {
    font-family: "minion-3-display", serif;
    background-color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    margin: 0 auto;
    font-style: normal;
    font-size: 1.5rem;
}

.hero-caption span.subtitle {
    font-family: "minion-3-display", serif;
    background-color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    margin: 0 auto;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.issue img {
    width: 60%;
    margin: 0 auto;
    box-shadow: 3px 3px 3px grey;
    margin-bottom: .5rem;
}

.issue-cover {
    display: flex;
}

.issue h5 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: .5rem;
    font-weight: bold;
}

.issue h2 {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

article.issue {
    grid-row: span 2;
}

footer {
    font-weight: bold;
    background-color: black;
    color: white;
    margin-top: 2rem;
    height: 30vh;
    padding: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}