.name {
	font-family: var(--font), serif;
	font-size: xx-large;
	font-weight: bolder;

	padding: 0;
	margin: 0;
	height: 1em;
	width: auto;
	text-align: center;
	background: #bb86fc;
	background: linear-gradient(
		135deg,
		rgba(187, 134, 252, 1) 42%,
		rgba(3, 218, 198, 0.68) 77%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.project-name {
	margin: 0;
	margin-bottom: 0.5em;
	text-align: center;
	font-size: large;
	font-weight: bold;
	color: var(--onSurface);
}
.project-desc {
	margin: 0;
	text-align: center;
	font-size: small;
	font-weight: 200;
	color: var(--onSurface);
}

menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

menu p,
a {
	position: relative;
	text-decoration: none;
	color: var(--onSurface);
	font-size: large;
	font-weight: bold;
	color: var(--primary);
}

menu a::before {
	content: "";
	position: absolute;
	height: 3px;
	border-radius: var(15px);
	top: 100%;
	width: 0%;
	transition: 0.5s ease;
	background-color: var(--secondary);
}

menu a:hover:before {
	width: 100%;
}

.projects-header {
	display: block;
	font-family: var(--font);
	font-size: large;
	font-weight: bolder;
	color: var(--onSurface);
	background-color: var(--surface);
	border-radius: 16px;
	text-align: center;
	width: 40%;
	padding: 0.25rem 0.5rem;
	margin: 0 auto;
}

.projects-header p {
	font-size: medium;
	font-weight: bold;
}

@media screen and (max-width: 760px) {
	.logo {
		display: none;
	}
}

@media screen and (max-width: 630px) {
	menu {
		gap: 0.5rem;
	}
}
@media screen and (max-width: 580px) {
}
@media screen and (max-width: 530px) {
	.default-menu {
		display: none;
	}

	.mobile-menu {
		display: block;
	}
}

@media screen and (max-width: 300px) {
	.name {
		font-size: x-large;
	}
	.projects-header > h2 {
		font-size: large;
	}
}
@media screen and (max-width: 250px) {
	.mobile-menu {
		padding: 0;
	}
}
