/*
Theme Name: Wordventure
*/

html, body {
	margin: 0;
	padding: 0;
	font-family: "Roboto Serif", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
body {
	background: url(/wp-content/uploads/2025/07/green-gardens.png) center center;
	background-size: cover;
	z-index: 1;
}
body.home {
	animation: fadeRise 1s ease-out 0.5s forwards;
	opacity: 0;
	transform: translateY(16px);
}
@keyframes fadeRise {
	to { 
		opacity: 1;
		transform: translateY(0);
	}
}
body::after {
	content: '';
	background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
p {
	line-height: 1.6;
	font-size: 16px;
	letter-spacing: 0.02em;
}
.center {
	text-align: center;
}
.content {
	height: 100vh;
	width: 500px;
	max-width: 100%;
	margin: 0 auto;
	color: white;
	padding-top: 10vh;
}
.content h1 {
	color: transparent;
}
.content h1 img {
	width: 100%;
}
