.loader {
	font-family: Outfit, Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
	height: 115vh;
	width: 100vw;
	display: flex;
	align-items: start;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: white;
	transition: all 1.75s ease-in;
	border-bottom-left-radius: 50% 10%;
	border-bottom-right-radius: 50% 10%;
	overflow-y: visible;
}

.loader__top {
	background-color: white;
	flex-basis: 85%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader__bottom {
	display: block;
	z-index: 100;
	bottom: 0;
	height: 15vh;
	width: 100%;
	flex-basis: 15%;
	flex-grow: 1;
	border-bottom-left-radius: 50% 100%;
	border-bottom-right-radius: 50% 100%;
}

.loader__title {
	font-size: 2rem;
	color: #9f9f9f;
	font-style: normal;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}