.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.badges img {
  height: 48px;
}

/* When dark mode is enabled, the html tag gets the class "dark" */
html.dark .badges {
  background-color: #072942;
  border-bottom: 1px solid #0882da;
}
