body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
}
.container {
  max-width: 800px;
  margin: 50px auto;
}
.intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.logo {
  height: 120px;
  width: 120px;
  margin-bottom: 30px;
}
.title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}
.intro > .description {
  margin-bottom: 70px;
  line-height: 1.5;
}
.intro > .version {
  padding: 5px 20px;
  border-radius: 999px;
  border: 1px solid #333;
  margin-bottom: 30px;
}
.assets {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.asset {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}

.asset .name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.asset .description {
  line-height: 1.5;
  margin-bottom: 30px;
}

.asset .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.asset .links a:not(:first-child) {
  margin-left: 15px;
}
.asset .links a {
  display: inline-block;
  color: #333;
  padding: 15px 25px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #333;
  transition: background-color 200ms ease,
              color 200ms ease;
}
.asset .links a:hover {
  color: white;
  background-color: #333;
}

.changelog .title {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.changelog ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  background-color: #fafafa;
}
.changelog li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.changelog li {
  padding: 5px 10px;
  line-height: 1.5;
}
.changelog .version {
  font-weight: 600;
  padding: 10px 10px;
  background-color: #eee;
}
