* {
    padding: 0;
    margin: 0;
}

:root {
    --dark: black;
    --light: white;
    --text: var(--dark);
}

body {
    image-rendering: pixelated;
    background-color: var(--light);
    color: var(--text);
    min-height: 100vh;
    font-family: Helvetica, sans-serif;
    margin: 1rem 1rem 0 1rem;
    width: calc(100vw - 2rem);
}

body > section {
    margin-bottom: 1rem;
    border-radius: 1rem;
    padding: 0.5rem;
    color: var(--text);
}

a {
    color: inherit
}


.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0 1rem;
    justify-items: center;
}