.list {
  display: flex;
  flex-direction: column;
  margin: 15px 0 15px 0;
  gap: 10px;
}

.entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-second);
  border: solid 1px var(--bright-second);
  padding: 10px;
}

.downloads {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.downloads a:first-child {
  border-right: solid 1px var(--bright-third);
  padding-right: 8px;
}

.entry h1 {
  color: var(--bright-main);
  font-weight: 900;
  font-size: 20px;
}

.entry a {
  color: var(--bright-second);
  text-decoration: none;
  font-weight: 100;
  font-size: 20px;
}

.entry a:hover {
  text-decoration: underline;
}