/* Header */
header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	padding-top: 30px;
	margin: 0;
}

header img {
	width: 35vw;
	height: 35vw;
	border-radius: 50%;
	box-shadow: 1px 1px 50px rgb(39, 92, 176);
	transition: all 0.2s ease;
}

header img:hover {
	transform: rotate(1deg) scale(1.02);
	box-shadow: 0 0 60px rgb(39, 92, 176);
}

.header-text h2 {
	margin: 0;
	font-weight: normal;
}

/* Navigation */
nav {
	width: 100%;
	padding: 10px 0;
	margin-bottom: 25px;
	margin-right: 30px;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin: 0;
}

nav a {
	text-decoration: none;
	color: white;
	font-size: 18px;
	font-weight: 600;
	transition: color 0.3s;
}

/* Headings */
h1 {
	margin: 0;
	font-size: 5vw;
	background: linear-gradient(to right, rgb(0, 140, 255), rgb(0, 208, 255), rgb(139, 236, 243));
	background-size: 200% 200%;
	animation: rainbow 2s ease-in-out infinite;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	display: inline-block;
	text-align: center;
	transition: color 0.2s ease-in-out;
	font-weight: 750;
	cursor: default;
}

@keyframes rainbow {
	0% { background-position: left; }
	50% { background-position: right; }
	100% { background-position: left; }
}

h2 {
	font-size: 40px;
	margin: 20px 10px;
}

/* Lists */
ul {
	margin-top: 0;
	font-size: 17px;
}

ul ul {
	padding-left: 15px;
	margin-top: 3px;
}

/* Links */
a {
	color: white;
}

a:hover {
	color: rgb(57, 124, 255);
}

section a {
	color: rgb(138, 178, 255);
	text-shadow: none;
	font-weight: bold;
}

.links {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-top: 30px;
}

.links i {
	font-size: 30px;
}

abbr {
	text-decoration: none;
}

/* Main */
main {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 120px;
}

/* Sections */
section {
	background: linear-gradient(135deg, rgba(25, 84, 145, 0.75), rgba(45, 158, 2040, 0.75));
	width: 85vw;
	margin-bottom: 20px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 20px;
	transition: transform 0.3s ease;
}

section:hover {
	transform: scale(1.01);
}

/* Mobile  */
@media (max-width: 768px) {
	.header-main {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.header-text {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	ul {
		padding-left: 0;
		margin-left: 0;
	}

	nav {
		margin-right: 0;
		width: 100%;
	}

	nav ul {
		justify-content: center;
		padding: 0;
		gap: 15px;
	}

	ul {
		margin-left: 10px;
	}

	h1 {
		font-size: clamp(40px, 10vw, 60px);
		width: 100%;
	}

	.header-text h2 {
		font-size: 30px;
	}

	nav {
		display: none;
	}

	main {
		padding-top: 40px;
	}

	.links {
		justify-content: center;
		width: 100%;
	}

	header img {
		width: 80%;
		max-width: 300px;
		height: auto;
	}
}
