.splash {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	color: var(--brand-dark-gray);
	font-family: "Daytona", sans-serif;

	img {
		max-width: 700px;
		width: 100%;
		padding-inline: 2rem;
	}

	.text {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	h1 {
		font-family: "Sarpanch", sans-serif;
		font-size: 3rem;
		font-weight: 700;
		line-height: 1.4;
	}

	p {
		font-size: 1.5rem;
		font-weight: 700;
	}

	a {
		color: var(--brand-orange);
		font-weight: 600;
		font-size: 1.5rem;
		transition: color 300ms ease;

		&:hover {
			color: var(--brand-dark-gray);
		}
	}
}
