html {
    scroll-behavior: smooth;
}

.nav-item {
    font-size: 18px;
    text-decoration: none;
    color: inherit;
    align-content: center;
}

div.nav-item {
	float: right;
	align-content: center;
	padding: 4px 8px;
	font-weight: 500;
}

.section {
	display: flex;
	padding: 160px 96px 0;
	flex-direction: column;
	gap: 96px;
}

.section-title {
	font-size: 80px;
}

.section-separator {
	height: 1px;
	background-color: lightgray;
}

.articles {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 56px;
}

.article {
	width: 600px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.article-caption {
	font-size: 36px;
	font-weight: 400;
}

.article-image {
	width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2),
            	0 1px 2px rgba(0, 0, 0, 0.14),
            	0 2px 1px rgba(0, 0, 0, 0.12);
}

.article-text {
	font-size: 24px;
	text-decoration: none;
	color: inherit;
	line-height: 145%;
}

.footer {
	display: flex;
}

.footer > div {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer > div > div > a {
	display: inline-block;
	cursor: pointer;
	font-weight: 500;
	font-size: 22px;
	text-decoration: none;
	color: inherit;
}

.icon {
	margin: 8px;
}