/* Property Of MAX'D OUT🚦 & zr1z */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	cursor: url('assets/img/cursor/arrow.cur'), pointer;
	scroll-behavior: smooth;
}

body,
html {
	background-image: url("assets/img/background.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: white;
	height: 100%;
	overflow: hidden;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 350px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
	padding: 40px;
	text-align: center;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, .7));
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-size: 80%;
	z-index: 10;
	will-change: transform;
}

.container-text h1 {
	color: white;
	font-size: 24px;
	text-transform: capitalize;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	margin-bottom: 20px;
}

.maxd-image img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 30px;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, .8));
	object-fit: cover;
}

.links-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.links-container a {
	cursor: url('assets/img/cursor/link.cur'), pointer;
}

.links-container a::selection {
	background-color: transparent;
	color: gray;
}

.copyright-container {
	width: 100%;
	margin-top: 20px;
	background: rgba(17, 17, 17, 0.2);
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
	border-radius: 8px;
	padding: 5px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 992px) {
	.container {
		width: 280px;
		padding: 30px;
		background-size: 100%;
	}
}

@media screen and (max-width: 480px) {
	.container {
		width: 90%;
		padding: 20px;
		background-size: 100%;
	}

	.container-text h1 {
		font-size: 20px;
	}
}