/* General Reset */
body {
	margin: 0;
	font-family: Arial, sans-serif;
/*	background: url('background.webp') no-repeat center center fixed;
	background-size: cover;*/
	color: #fff;
	height: 100vh;
	background-color:#160016;
	position: relative;
}

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

.bg {
	opacity: 0.4;
	position: absolute;
	left:0;
	top:0;
	height:100%;
	width: 100%;
	object-fit: cover;
}

.card {
	position: relative;
	background: rgba(0, 0, 0, 0.8);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	/*text-align: center;*/
	max-width: 530px;
	width: 90%;
}

.name {
	font-size: 2.5em;
	margin: 0;
	font-weight: bold;
	font-family: 'Inria Sans';
	text-align: center;
}

.tags {
	font-size: 1em;
	margin: 10px 0;
	color: #aaa;
	font-family: 'Inria Sans';
	text-align: center;
}

.divider {
	width: 79%;
	height: 2px;
	background: purple;
	margin: 15px auto;
}

.description {
	font-size: 1em;
	line-height: 1.5;
	margin: 15px 0;
	font-family: 'Nunito Sans';
}

.email {
	font-size: 1em;
	margin: 10px 0;
}

.email a {
	color: #00bcd4;
	text-decoration: none;
}

.email a:hover {
	text-decoration: underline;
}

.credentials {
	font-size: 0.9em;
	color: #bbb;
	margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.card {
		padding: 15px;
	}

	.name {
		font-size: 2em;
	}

	.description {
		font-size: 0.9em;
	}
}

