* {
	user-select: none;
}

body,
html {
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
	background-color: #1a1a1a;
	color: #fff;
	overflow: hidden;
}

.layout {
	display: flex;
	height: 100vh;
}

.content {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #1a1a1a;
}

.projects {
	width: 50%;
	overflow-y: auto;
	background-color: #262626;
	padding: 20px;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.logo {
	width: 80px;
	height: auto;
	margin-bottom: 20px;
	border-radius: 50%;
	scale: 2;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.highlight {
	position: relative;
	display: inline-block;
	background: linear-gradient(135deg, rgba(84, 84, 255, 1) 0%, rgba(255, 67, 67, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.description {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #b3b3b3;
}

.social-links {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.social-icon {
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 50%;
	background-size: cover;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	text-decoration: none;
	color: whitesmoke;
}

.social-icon:hover {
	transform: scale(1.5);
}

img.skillicons {
	align-self: center;
	justify-content: center;
	padding: 10px;
}

.gh-link {
	display: inline-block;
	position: absolute;
	bottom: 7px;
	right: 7px;
	padding: 10px 15px;
	background-color: #1d94ab;
	color: whitesmoke;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.gh-link:hover {
	background-color: #00a3cc;
}

.experience-box {
	position: relative;
}

.project {
	background-color: #333;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.project:hover {
	transform: translateY(-10px);
}

.project h2 {
	margin: 0 0 10px;
	font-size: 1.5rem;
	color: #fff;
}

.project p {
	margin: 0 0 10px;
	color: #b3b3b3;
}

.project a {
	color: #1d94ab;
	text-decoration: none;
	transition: color 0.3s ease;
}

.project a:hover {
	color: #00a3cc;
}

.cavernfall {
	background: rgb(224, 224, 224);
	background: -moz-linear-gradient(90deg, #333 25%, #f8c83f, 100%);
	background: -webkit-linear-gradient(90deg, #333 25%, #f8c83f 100%);
	background: linear-gradient(90deg, #333 25%, #f8c83f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#333", endColorstr="#3f207c", GradientType=1);
}

.projects::-webkit-scrollbar {
	width: 12px;
}

.projects::-webkit-scrollbar-track {
	background: #1a1a1a;
}

.projects::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 10px;
	border: 3px solid #1a1a1a;
}

.projects::-webkit-scrollbar-thumb:hover {
	background-color: #5730a7;
}

.social-icon {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, top 0.3s ease;
}

.social-icon:hover {
	transform: scale(1.2);
	color: rgba(84, 84, 255, 1);
}

.footer-element {
	color: #444;
	text-align: center;
}

.dash {
	color: #555;
}

.cavernfall-desc {
    color: inherit;
    text-decoration: underline;
}

.cavernfall-desc:hover {
    color: #fff;
    transition: transform 2s ease;
}


.comissions {
	color: #b3b3b3;
}

.comissions p {
	scale: 1.3;
}