.ChangelogMain {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
}

.ChangelogCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 85%;
  margin-bottom: 1.5rem;
  border: solid 0.1rem #111111;
  border-radius: 0.1rem;
}

.ChangelogVersion {
  font-size: 1.4rem;
  color: #f0f0f0;
}

.ChangelogDate {
  color: #f0f0f0;
}

.ChangelogList {
  color: #f0f0f0;
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 86%;
  margin-bottom: 2rem;
}

.ChangelogTopLine {
  display: flex;
  align-self: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 85%;
}

@media (min-width: 700px) {
  .ChangelogMain {
    padding-left: 12.3rem;
  }
}

