.section {
    background-color: var(--bg1);
}

html {
    background: url("/assets/bg.jpg");
    background-attachment: fixed;
    background-size: cover;
    image-rendering: pixelated;
}

/* Links */
a {
    color: var(--blue);
}

a:visited {
    color: var(--purple);
}

#weird-fucking-header-container {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.whatever {
    grid-area: 1 / 1 / 2 / 2;
}

#badge-grid {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}
