*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--accent: #62EAFF;
	--accent-hover: #4AC6D9;
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.502);
	--content-width: 48rem;
	--padding-h: 2rem;
	--padding-v: 2rem;
	--spacing: 1.5rem;
}

html {
	font-size: 15pt;
}

body {
	min-height: 100dvh;
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	animation: fade-in 1s ease-in-out forwards;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url('images/bg.jpg');
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	z-index: -1;
}

@keyframes fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

main {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-start;
	max-width: 100%;
}

.content {
	width: var(--content-width);
	max-width: 100%;
	padding: var(--padding-v) var(--padding-h);
	display: flex;
	flex-direction: column;
	gap: var(--spacing);
}

h1 {
	color: var(--text-primary);
	font-family: 'Raleway', sans-serif;
	font-size: 3em;
	font-weight: 700;
	line-height: 1.125;
}

p {
	color: var(--text-secondary);
	font-family: 'Raleway', sans-serif;
	font-size: 1.25em;
	line-height: 1.75;
}

p strong {
	color: var(--text-primary);
}

p a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.25s ease;
}

p a:hover {
	color: var(--accent-hover);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	font-size: 1.5em;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	border: 2px solid var(--accent);
	transition: transform 0.25s ease;
	text-decoration: none;
}

.social-links a:hover {
	transform: scale(1.2);
}

.social-links svg {
	width: 60%;
	height: 60%;
	fill: var(--accent);
	display: block;
	pointer-events: none;
}

@media (max-width: 1680px) {
	html { font-size: 11pt; }
}

@media (max-width: 980px) {
	html { font-size: 9pt; }
}

@media (max-width: 736px) {
	html { font-size: 11pt; }

	.content {
		--padding-h: 2rem;
		--padding-v: 3rem;
	}

	h1 { font-size: 2.5em; }

	.social-links { font-size: 1.75em; }
}

@media (max-width: 480px) {
	:root { --spacing: 1.3125rem; }
}

@media (max-width: 360px) {
	:root {
		--spacing: 1.125rem;
	}

	.content {
		--padding-h: 1.5rem;
		--padding-v: 2.25rem;
	}

	h1 { font-size: 2.5em; }

	.social-links { gap: 0.75rem; }
}
