body {
    background-color: #181818;
    color: #d1d1d1;
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.25;
    margin: 20;
    padding: 0;
}

header {
    border-bottom: 1px solid #d1d1d1;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: #d1d1d1;
    text-decoration: solid;
    font-weight: bold;
    text-transform: uppercase;
}

nav a:hover {
    text-decoration: underline;
}

h1, h2 {
    color: #d1d1d1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(autofill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tile {
    border: 2px solid #d1d1d1;
    padding: 15px;
    background: #262626;
}

.tile.hover {
    background: #262626;
    transform: scale(1.02);
}

.tile .date {
    font-size: 0.8em;
    color: #d1d1d1;
    display: block;
    margin-bottom: 10px;
}

.tile a {
    color: #d1d1d1;
    text-decoration: underline;
    font-weight: bold;
}

footer {
    margin-top: 20px;
    border-top: 1px solid #d1d1d1;
    font-size: 0.7em;
    text-align: center;
}