body {
	margin: 0;
	/* font-family: 'Noto Serif', serif; */
	font-family: 'Hind Siliguri', sans-serif;
	background-image: url('./assets/images/sky-background.jpg');
	background-size: 100% 120%;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.headline-section {
	background-color: #00A9FF;
	background-image: linear-gradient(170deg, #00A9FF, #00A9FF, #1a85be);
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.profile-info-section {
	padding: 30px 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.profile-pic {
	border-radius: 50%;
	width: 30vw;
	border: 0.5rem solid #89CFF3;
	z-index: 2;
}

.profile-text {
	display: flex;
	flex-direction: column;
	text-align: left;
	padding-left: 20px;
	z-index: 2;
}

h1 {
	color: white;
	font-family: 'Noto Serif', serif;
	font-size: 60px;
	letter-spacing: 2px;
	margin: 0px;
	padding-bottom: 20px;
	text-shadow: 2px 1px rgba(0, 0, 0, 0.342);
}

h2 {
	color: white;
	font-size: 35px;
	letter-spacing: 2px;
	margin: 0px;
	text-shadow: 2px 1px rgba(0, 0, 0, 0.089);
}

h3 {
	font-size: 30px;
	font-family: 'Noto Serif', serif;
	font-weight: bold;
	letter-spacing: 1px;
	margin: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
}

.personal-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 0.5rem;
	row-gap: 1rem;
	padding-top: 7px;
	line-height: 140%;
}

.detail-title {
	margin: 0;
	text-align: right;
	font-size: 20px;
	font-weight: 600;
	align-self: center;
}

.detail-detail {
	margin: 0;
	padding-left: 4px;
	font-size: 19px;
	text-align: left;
	align-self: center;
}

.about-bio-and-image {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.about-text {
	flex: 1;
	max-width: 50%;
	margin: 0px;
	text-align: right;
}

.big-info-text {
	font-size: 30px;
	color: rgb(238, 238, 238);
	line-height: 130%;
}

.universe-img {
	width: 50%;
	border-radius: 3px;
}

.section {
	padding: 0px 1rem 2rem 1rem;
	background-color: rgba(0, 0, 0, 0.29);
	margin: 0px 10%;
	margin-top: 20px;
	color: white;
	border: 8px solid rgba(0, 0, 0, 0.082);
}

.education-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.education-text {
	flex: 1;
	text-align: left;
	font-size: 30px;
	margin: 0px;
}

.education-image {
	width: 50%;
	border-radius: 3px;
}

.skills-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	row-gap: 20px;
	column-gap: 15px;
}

.skill-card {
	width: 250px;
	background-color: #89CFF3;
	padding: 20px 12px;
	border-radius: 5px;
}

.skills-intro {
	font-size: 1.2rem;
	padding: 0px 20px;
}

.skill-text {
	margin: 0px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: rgb(43, 43, 43);
}

.skill-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

footer {
	background-color: rgba(0, 0, 0, 0.589);
	padding: 10px 10% 40px 10%;
	margin-top: 40px;
	color: white;
}

.contact-details-intro {
	font-size: 1.25rem;
	margin: 0px 0px 7px 0px;
}

.contact-info-row {
	display: flex;
	align-items: center;
	color: rgb(238, 238, 238);
}

.contact-info {
	margin: 0px;
	padding: 2px 20px;
	font-size: 1.15rem;
	padding-left: 10px;
}

.contact-link {
	color: rgb(82, 230, 235);
}

@media only screen and (max-width: 768px) {
	.profile-info-section {
		flex-direction: column;
	}
	
	.profile-pic {
		width: 70vw;
	}

	.profile-text {
		text-align: center;
		padding-left: 0px;
	}
	
	.big-info-text {
		font-size: 20px;
	}
	
	.about-bio-and-image {
		flex-direction: column;
	}

	.about-text {
		max-width: 100%;
		padding: 10px 0px 10px 0px;
		text-align: center;
	}

	.universe-img {
		width: 100%;
	}
	
	.education-flex {
		flex-direction: column-reverse;
	}

	.education-image {
		width: 100%;
	}

	.education-text {
		padding: 0px 0px 0px 0px;
		text-align: center;
	}

	.skill-card {
		width: 42%;
	}

	.skills-intro {
		padding: 0px;
	}

	.skill-text {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 554px) {
	.skill-card {
		width: 100%;
	}
	
	.skill-text {
		font-size: 1.4rem;
	}
}

/* 00A9FF */
/* 89CFF3 */
/* A0E9FF */
/* CDF5FD */