html, body {
	width: 100%;
	height: 100%;
}

body {
	background-color: var(--teal);
}

h1, a {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--black);
	text-transform: uppercase;
	font-size: 48px;
}

a {
	text-decoration: none;
	text-underline-offset: 4px;
}

p {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--white);
	font-size: 24px;
}

p b {
	font-weight: 700;
}

.main {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.content {
	width: 100%;
	max-width: var(--max);
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 32px;
	z-index: 2;
}

.content-links {
	display: flex;
	flex-direction: column;
}

.content-links a {
	text-align: right;
}

.image {
	position: absolute;
	width: 512px;
	height: auto;
	left: 50%;
	bottom: 0;
	transition: transform 300ms ease-in-out;
	z-index: 3;
}

.about {
	position: absolute;
	width: 876px;
	height: 431px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("/resources/svg/signature.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


.about p {
	width: 100%;
}

@media screen and (min-width: 769px) {
	.image {
		transform: translateX(-50%) translateY(var(--hidden));
	}

	.image:hover {
		cursor: pointer;
		transform: translateX(-50%) translateY(calc(var(--hidden) - var(--pop)));
	}
}

@media screen and (max-width: 768px) {
	h1, a {
		font-size: 32px;
	}

	.main {
		align-items: flex-start;
	}

	.content {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.content-links {
		width: 100%;
	}

	.image {
		transform: translateX(-50%) translateY(calc(var(--hidden) - var(--pop)));
	}
}

