body {
	position: relative;
	margin: 0;
	padding: 0;
	margin-left: 3%;
	margin-right: 3%;
	text-align: left;
	font-size: 18px;
	line-height: 1.6;
	word-break: break-word;
	background: #f5f5f5;
	font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Oxygen, Ubuntu, Cantarell, open sans, helvetica neue, sans-serif;
	min-height: 100vh;
}

.nav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.nav a {
	text-decoration: none;
	color: inherit;
}

.logo {
	font-size: 24px;
	font-weight: bold;
}

.menu {
	display: flex;
	list-style: none;
	word-break: keep-all;
	overflow-x: auto;
	white-space: nowrap;
}

.menu li {
	margin-right: 15px;
}

.menu li:last-child {
    margin-right: 0;
}

.short-version {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.content {
	margin: 8%;
}

.post {
    margin-left: 0;
    margin-right: 0;
}

.post-title {
	margin-bottom: 2px;
	font-size:40px
}

.post-card {
	border: 1px solid #ccc;
	border-style: hidden;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 20px;
	background: white;
}

.post-card:last-child {
	margin-bottom: 0;
}

.post-card-title {
	margin-bottom: 0;
	margin-top: auto;
	font-size:30px
}

.post-card-content {
	font-size: 16px;
}

.footer {
	text-align: center;
	margin: auto;
	font-size: 12px;
	text-decoration: none;
	position: sticky;
	top: 100%;
}

.footer a {
	color: inherit;
}

@media (max-width:  768px) {
    body {
		font-size: 16px;
    }

	.post {
		margin: 1%;
	}

	.logo {
		font-size: 20px;
	}

	.post-title {
		font-size: 30px;
	}

	.footer {
		font-size: 10px;
	}

	.menu {
		font-size: 16px;
	}
}
