
@font-face {
	font-family: 'Slussen';
	src: url('fonts/Slussen-BlackItalic.otf') format('opentype');
}

html, body, * {
	font-family: 'Slussen', Arial, sans-serif;
}

body {
	background: url('logos/background.png') no-repeat center center fixed;
	background-size: cover;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
	margin-bottom: 24px;
}

.csa-logo {
	max-width: 320px;
	width: 80vw;
	height: auto;
	display: block;
}

main {
	margin-top: auto;
	width: 100%;
    max-width: 1280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

h1 {
	color: #f0bf31;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

h1, p, footer, .social-links {
	text-align: center;
	text-transform: uppercase;
}

p {
	margin: 0 0 1rem 0;
	font-size: 0.75rem;
	line-height: 1.5;
	word-break: break-word;
	font-weight: 1500;
}

@media (max-width: 600px) {
	body {
		font-size: 0.65rem;
		padding: 0 0.5rem;
	}
	main {
		max-width: 98vw;
		padding: 1rem 0.5rem;
	}
	.csa-logo {
		max-width: 90vw;
	}
	p {
		margin-top: 24px;
		font-size: 0.60rem;
		line-height: 1.5;
		word-break: break-word;
		font-weight: 900;
	}
	.social-links {
		gap: 14px;
	}
	footer {
		padding-bottom: 1rem;
	}
}

.social-links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
	padding: 16px 0;
}
.social-links a img {
	display: block;
	transition: transform 0.2s;
}
.social-links a:hover img {
	transform: scale(1.1);
}
