:root {
	--color: #0F0F0F;
	--bg: rgba(243, 243, 233, 0.97);
	--bold: 700;
	--font: 'Inter', sans-serif;
}

/* Basic Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

ul, ol {
  list-style: none;
}

p {
	line-height: 1.6;
	margin: 1em 0 1.2em;
}

body {
	background: var(--bg);
	padding: 0;
	margin: 0;
	font-family: var(--font);
	font-optical-sizing: auto;
	font-weight: var(--bold);
	font-style: normal;
}

.holding-page {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	height: auto;
	width: 100%;
}

.holding-page__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 30px;
}

.holding-page__inner--logo {
	display: block;
	max-width: 100%;
	height: auto;
	width: auto;
	animation: fadeIn 1.25s ease-out forwards;
}

.holding-page__inner--text {
	padding-top: 77px;
	font-size: 32px;
	font-weight: var(--bold);
	animation: fadeIn 1.25s ease-out forwards;
}


@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes blurFadeIn {
	0% {
		opacity: 0;
		filter: blur(10px);
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		filter: blur(0px);
		transform: scale(1);
	}
}

