@import "./style/reset.css";
@import "./style/fonts.css";
@import "./style/color.css";
@import "./style/code.css";

/* Templates CSS */
@import "./style/base.css";
@import "./style/footer.css";
@import "./style/head.css";
@import "./style/header.css";
@import "./style/post.css";
@import "./style/breadcrumb.css";
@import "./style/social.css";
@import "./style/subscribe-form.css";
@import "./style/nav.css";

@font-face {
	font-family: "Wotfard Regular";
	font-style: normal;
	font-weight: normal;
	src:
		local("Wotfard Regular"),
		url("./assets/fonts/Wotfard-Regular.woff") format("woff");
}

:root {
	font-family: "Wotfard Regular";
	line-height: 1.5;
	font-weight: 400;
	color: var(--ds-gray-1000);
	background-color: var(--ds-gray-100);
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	position: relative;
	z-index: 0;
}

html,
body {
	margin: 0;
	width: 100%;
	height: calc(100lvh - 64px);
	display: flex;
	flex-direction: column;
	background-color: var(--ds-gray-100);
	scroll-behavior: smooth;
}

html {
	overflow: hidden;
}

body {
	top: 0;
	min-width: 320px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body::-webkit-scrollbar {
	display: none;
}

.content {
	flex: 1;
}

.wrapper {
	display: flex;
	flex: 1;
	align-items: left;
	flex-direction: column;
	width: 100%;
	max-width: calc(100vw - 30%);
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.wrapper {
		max-width: calc(100vw - 10%);
	}
}

.container {
	display: flex;
	height: calc(100vh - 100px);
	align-items: center;
}

.text {
	color: var(--ds-gray-900);
	font-size: var(--font-size-body);
	text-align: justify;
	justify-content: center;
}
