* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-display: swap; font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: url("media/Open-Sans.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 700;
	src: url("media/Open-Sans-700.woff2") format("woff2");
}

body {
	background-color: #1e1f1f;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	color: #d1cbc1;
}

.container {
	width: 100%;
	padding: 0 30px;
}

.header {
	width: 100%;
	margin: 15px 0 10px 0;
	text-align: center;
	font-weight: 700;
	font-size: 60px;
}

.header a {
	color: #d1cbc1;
	text-decoration: none;
}

.slogan {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
	font-weight: 400;
	font-size: 17px;
}

.iframe-top {
	position: relative;
	width: 100%;
	height: 190px;
}

.iframe-bottom {
	position: relative;
	width: 100%;
	height: 375px;
}

.iframe-text {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid #ff0000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
}

.iframe-text a, .post a {
	text-decoration: underline;
	color: #ff6633;
}

.iframe-text a:hover, .post a:hover {
	text-decoration: none;
}

.iframe-cams {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.iframe-title {
	text-align: center;
	margin-bottom: 5px;
	font-size: 22px;
}

.excerpts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 70px 40px;
	margin: 60px auto 80px auto;
	max-width: 1200px;
}

.excerpts img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.excerpts h3 {
	margin: 15px 0;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
}

.excerpts h3 a {
	color: #d1cdc7;
	text-decoration: none;
}

.excerpts h3 a:hover {
	color: #e5e5e4;
}

.excerpts p {
	font-size: 16px;
	line-height: 26px;
	color: #a9a093;
}

.continue {
	display: block;
	border: 1px solid #716f6f;
	border-radius: 10px;
	background-color: #141111;
	padding: 13px;
	margin-top: 20px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.continue:hover {
	background-color: #393030;
}

.post {
	margin: 50px auto 80px auto;
	max-width: 900px;
}

.post h1 {
	font-weight: 700;
	font-size: 40px;
}

.post img {
	width: 100%;
	height: auto;
	margin: 30px 0;
}

.post h2 {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 20px;
}

.post p, .post ul {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 30px;
}

.post li {
	margin-left: 40px;
}

.call {
	width: 100%;
	font-size: 26px;
	text-align: center;
}

.footer {
	margin: 60px 0 15px 0;
	text-align: center;
	font-size: 16px;
}

.footer a {
	text-decoration: none;
	color: #d1cbc1;
}

.footer a:hover {
	color: #fff;
}

@media (max-width: 767px) {
	.container {
		padding: 0 15px;
	}

	.header {
		margin: 10px 0 20px 0;
		font-size: 36px;
	}

	.slogan {
		display: none;
	}

	.iframe-text {
		line-height: 22px;
		font-size: 16px;
	}

	.iframe-title {
		font-size: 20px;
	}

	.excerpts {
		display: flex;
		flex-direction: column;
		gap: 60px;
		margin: 40px auto 60px auto;
	}

	.post {
		margin: 25px auto 50px auto;
	}
	
	.post h1 {
		font-size: 30px;
	}

	.post img {
		margin: 20px 0;
	}

	.post h2 {
		font-size: 24px;
	}

	.post p, .post li {
		font-size: 16px;
		line-height: 25px;
	}

	.call {
		font-weight: 700;
		font-size: 24px;
	}

	.footer {
		margin:40px 0 10px 0;
		font-size: 15px;
	}
}
