* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #232323;
  color: white;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #111111;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  background-color: #232323;
  padding: 10px;
}

/* Style the footer */
.footer {
  background-color: #343434;
  padding: 5px;
}

.pageselect {
  display: block;
  font-size: large;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1em;
}
a {
  color: skyblue;
}

.dirselect {
  font-size: x-large;
  list-style-type: none;
}

.images-container {
  display: flex; /* Make it a grid :3 */
  flex-wrap: wrap;
}

.image-container {
  padding: 0.2em;
  max-width: 10em;
  text-align: center;
}

.image-container a img {
  max-width: 90%;
}