@import url("/www/css/reset.css");
@import url("/www/css/header.css");
@import url("/www/css/pages/01_home.css");
@import url("/www/css/pages/love_story.css");
@import url("/www/css/pages/04_rsvp.css");
@import url("/www/css/pages/05_timeline.css");
@import url("/www/css/pages/06_chest.css");
@import url("/www/css/pages/07_faq.css");

body {
	display: flex;
	flex-direction: column;
}

.page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	padding-top: 20vh;
	padding-bottom: 25px;
	padding-left: 50px;
	padding-right: 50px;
}

#loader {
	position: fixed;
	z-index: 999;
	background-color: var(--clr);
	padding: 0px;
	transition: all 0.5s ease-in-out;

	.loader {
		display: flex;
		justify-content: center;
		align-items: center;
		border: none;
		width: 120px;
		height: 120px;
		animation: FadeInOut 1.5s linear infinite;
		font-size: 50px;
		height: 100vh;
		width: 100%;

		.the_knot {
			color: var(--accent-clr);
		}
	}
}

@keyframes FadeInOut {
	0% {
		opacity: 0;
	}

	25% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}

	75% {
		opacity: 0.5;
	}

	100% {
		opacity: 0;
	}
}
