*{
    font-family: Andale Mono,AndaleMono,monospace;
}

 /* unvisited link */
a:link {
  color: #929292;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #929292;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #929292;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #929292;
  text-decoration: none;
} 

body {
    background-color: #000;
    margin: 0;
    color: #929292
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img.fit {
    max-width: min(100vw, 1024px);
}

.gallery {
    width: min(100vw, 1024px);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.gallery-item {
    width: min(calc(100vw/4), 256px);
}