* {
	margin: 0;
	padding: 0;
	font-family: 'Be Vietnam Pro', sans-serif;
	cursor: url('./IMAGES/cursor.svg'), auto;
}

.header-contacts {
	min-height: 100vh;
	width: 100%;
	background-color: #1f1f1f;
	position: relative;
}

/* TEXT*/
h1 {
	font-size: 62px;
	font-weight: bold;
	color: lightcoral;
	text-align: center;
	align-items: center;
}

p {
	margin: 10px 0 40px;
	font-size: 18px;
	color: rgb(255, 228, 232);
	align-items: center;
	text-align: center;
}

/* NAV */
nav {
	display: flex;
	padding: 1% 1%;
	justify-content: space-between;
	align-content: center;
	background-color: #333;
}

nav img {
	width: 80px;
	margin-left: 20px;
}

.nav-links {
	flex: 1;
	text-align: center;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 10px 10px;
	position: relative;
}

.nav-links ul li a {
	color: #ffffff;
	text-decoration: none;
}

.nav-links ul li::after {
	content: '';
	width: 0%;
	height: 2px;
	background-color: #ffb6c1;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after {
	width: 100%;
}

/* ICONS */
nav .fa {
	display: none;
}

a {
	color: salmon;
	text-decoration: none;
}

a:hover {
	color: lightpink;
}

/* CONTACTS CONTAINERS */
.infoaboutme {
	width: 100%;
	background-color: #333333;
	position: absolute;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 0;
	justify-content: center;
}

.infoaboutme-right {
	flex: 1;
	padding-left: 20px;
	text-align: left;
	display: flex;
}

.infoaboutme-left {
	flex: 0 0 auto;
	margin-right: 15px;
}

.contact-info {
	flex: 1;
	text-align: center;
	padding: 20px;
}

.contact-info ul li {
	list-style: none;
	color: rgb(255, 228, 232);
	font-size: 18px;
	text-align: left;
}

.infoaboutme-left img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.infoaboutme p {
	text-align: left;
}

.infoaboutme-right h1 {
	text-align: left;
}

/* CONTACTS ABOUT ME CONTAINER */
.aboutmecon {
	width: 60%;
	color: #fff;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	text-align: left;
	align-items: center;
	border-left: solid 24px lightcoral;
	box-sizing: border-box;
	padding-left: 100px;
}

.aboutmecon h1 {
	font-size: 62px;
	font-weight: bold;
	color: lightcoral;
	text-align: left;
}

.aboutmecon p {
	margin: 10px 0 40px;
	font-size: 18px;
	color: #fff;
	text-align: left;
}







/* Styles for phone resolutions */
@media (max-width: 700px) {


	/* CONTACTS ABOUT ME CONTAINER */
	.aboutmecon {
		width: 90%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 0;
		border-left: none;
		text-align: center;
	}

	.aboutmecon h1 {
		font-size: 35px;
		text-align: center;
	}

	.aboutmecon p {
		font-size: 14px;
		text-align: center;
	}

	/* CONTACTS CONTAINERS */
	.infoaboutme {
		padding: 20px 0;
	}

	.infoaboutme h1 {
		font-size: 35px;
		text-align: center;
		margin-bottom: 20px;
	}

	.infoaboutme-right {
		flex: 1;
		padding-left: 20px;
		text-align: center;
		flex-direction: column;
		align-items: center;
	}

	.infoaboutme-right p {
		text-align: center;
	}

	.infoaboutme .infoaboutme-right {
		padding-left: 0;
		text-align: center;
	}

	.infoaboutme .infoaboutme-left {
		margin: 0 auto 15px;
	}

	.infoaboutme .contact-info ul li {
		text-align: center;
	}

	.infoaboutme .infoaboutme-left img {
		width: 150px;
		height: 150px;
	}

	/* NAVIGATION LINKS */
	.nav-links ul li {
		display: block;
		text-align: center;
		padding: 10px 0;
	}

	.nav-links {
		display: none;
		position: fixed;
		background-color: rgba(51, 51, 51, 0.8);
		backdrop-filter: blur(5px);
		box-shadow: 0 2px 4px rgba(10, 0, 0, 0.2);
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: center;
		z-index: 2;
		transition: 1s;
	}

	nav .fa {
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}

	.nav-links ul {
		padding: 30px;
	}
}