body {
  font-size: 14px;
  color: black;
  margin: 20px;
  text-align: center;
  font-family: monospace;
/*  background: white url(../img/back.png); */
}

header {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px;
}

p {
  color: black;
  background-color: white;
  margin: 0 auto;
  padding: 5px;
  max-width: 28em
}

h1 {
  font-size: 2em;
  color: black;
  background-color: white;
  border-bottom-style: solid;
  border-bottom-width: 0.1em;
}


/* --------------- COLUMN ---------------- */

div.flex-container {
  display: flex;
  /* Show the flex items horizontally */
  flex-direction: row;
}

div.flex-container > div {
  margin: 10px;
}

/* Use media query and show the flex items vertically if screen width is less than 600px */
@media screen and (max-width:600px) {
  div.flex-container {
    flex-direction: column;
  }
}


/* --------------- CUSTOM ---------------- */
.badges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px; /* Adjust the gap between rows */
  margin-top: 10px;
}

.row {
  display: flex;
  gap: 5px; /* Adjust the gap between badges */
}

.footer {
  text-align: center;
  margin: 10px 200px 0px;
  background-color: white;
}

/* --------------- MEDIA ---------------- */

.dir-list {
  text-align: left;
  display: inline-block;
  margin: 1em auto;
}

.track {
  text-align: left;
  max-width: 28em;
  margin: 1em auto;
}

.track audio {
  display: block;
  width: 100%;
  max-width: 28em;
  margin-top: 0.3em;
}
