* {
	font-family: sans-serif;
	color: #333;
}

h1 {
	color: black;
}

.wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-top: 80px;
}

.container {
	max-width: 1200px;
	display: flex;
	flex-flow: column;
	width: 100%;
}

ul.releases {
	display: flex;
	flex-flow: column;
	row-gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

li.release {
	padding: 0;
	margin: 0;
}

li.release::after {
	content: '';
	width: 80px;
	height: 1px;
	background: #ddd;
	display: block;
	margin-top: 20px;
}

.release-title {
	display: flex;
    justify-content: flex-start;
    column-gap: 5px;
    margin-bottom: 18px;
    flex-flow: column;
    align-items: flex-start;
    row-gap: 5px;
}

.date {
	color: #aaa;
	font-size: 12px;
	padding-bottom: 3px;
}

h2 {
	margin: 0;
}

.logo {
	margin-bottom: 20px;
}

.release-logs ul {
    display: flex;
    flex-flow: column;
    row-gap: 10px;
}