html,
body {
	font-family: 'Felix Titling', serif;

	height: 100%;
	width: 100%;

	margin: 0;

	overflow: hidden;

	--padding: 2.5em;

	color: white;
}

.background {
	position: relative;

	height: 100%;
	width: 100%;

	background-image: url("IMG_0004.JPG");
	background-position: center;
	background-size: cover;
}

.top-text-container {
	font-family: 'Felix Titling';

	position: absolute;

	top: 40%;

	left: var(--padding);
	right: var(--padding);

	display: flex;
	flex-direction: row;

	color: white;

	font-size: 28px;
}

.text-left {
	flex: 1;
	text-align: left;
}

.text-right {
	flex: 1;
	text-align: right;
}

.bottom-text-container {
	position: absolute;

	bottom: var(--padding);
	left: var(--padding);
	right: var(--padding);

	display: flex;
	flex-direction: row;
}

.contact {
	display: flex;
	flex-direction: column;
	justify-content: end;

	gap: 16px;
}

.contact-button {
	color: white;

	font-family: 'Felix Titling', serif;
	font-size: 16px;

	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	text-align: left;

	background: none;

	border: none;
	padding: 5px 0;

	cursor: pointer;

	transition: opacity 0.3s ease;
}

.contact-button:hover {
	opacity: 0.8;
}

.title {
	flex: 1;

	font-size: 100px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	letter-spacing: 2px;

	text-align: right;
}

@media (max-width: 950px) {
	.top-text-container {
		flex-direction: column;
	}

	.bottom-text-container {
		flex-direction: column-reverse;

		gap: 32px;
	}

	.title {
		text-align: center;
	}
}