@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');

body {
	margin: 0px;
	background: #000;
}

#container {
	position: absolute;
	margin: auto;
	width: 100vw;
	height: 80pt;
	top: 0;
	bottom: 0;
	
	filter: url(#threshold) blur(0.6px);
}

#text1, #text2 {
	position: absolute;
	width: 100%;
	display: inline-block;
	
	font-family: 'Raleway', sans-serif;
	font-size: 80pt;
	
	text-align: center;
	
	user-select: none;
	color: #fff;
}

#social-links {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	
	display: flex;
	align-items: center;
	gap: 15px;
	
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	
	z-index: 1000;
}

.social-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 12px;
}

.social-link:hover {
	color: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
}

.separator {
	color: rgba(255, 255, 255, 0.3);
	font-size: 10px;
	user-select: none;
}

@media (max-width: 768px) {
	#text1, #text2 {
		font-size: 40pt;
	}
	
	#social-links {
		bottom: 30px;
		gap: 10px;
	}
	
	.social-link {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	#text1, #text2 {
		font-size: 30pt;
	}
	
	#social-links {
		flex-direction: column;
		gap: 8px;
		bottom: 20px;
	}
	
	.separator {
		display: none;
	}
}
