/* ===========  Color Variables  ========== */

:root {
	--primary: #1e273c;
	--white: white;
}

main {
	margin: 0rem 3rem;
	width: 100%;
}

#heroSection {
	height: var(--doc-height);
}

#profileDiv {
	background-color: var(--primary);
	border-radius: 100%;
	width: 12rem;
	height: 12rem;
	margin-right: auto;
	margin-left: auto;
	margin-top: 2rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.1rem solid var(--primary);
}

#profile {
	height: 100%;
	width: 100%;
	border-radius: 100%;
}

#socialsSection {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#socialsSection a {
	padding-right: 3rem;
	width: 80%;
	max-width: 50rem;
	text-decoration: none;
	background-color: var(--white);
	color: var(--primary);
	font-weight: 400;
	align-items: center;
	display: grid;
	padding: 0.7rem;
	font-size: 1.7rem;
	border: 0.1rem solid var(--primary);
	border-radius: 0.5rem;
	grid-template-columns: 3.5rem 1fr 3.5rem;
	transition: 0.6s ease-in-out;
}

#socialsSection a:hover {
	color: white;
	background-color: var(--primary);
}

.link {
	margin-bottom: 1.5rem;
}

#socialsSection img {
	width: 4rem;
	border-radius: 17.544%;
}

#socialsSection a p {
	text-align: center;
}

nav a {
	flex: 4;
}

nav .socials {
	flex: 4;
	display: flex;
	justify-content: flex-end;
}

#navbar {
	flex: 1;
}

#navbar li {
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 850px) {
	nav .socials {
		display: none;
	}

	#navbar {
		display: block;
	}
}

@media only screen and (max-width: 750px) {
	#navbar {
		display: none;
	}

	#profileDiv {
		width: 8rem;
		height: 8rem;
		margin-top: 0.5rem;
		margin-bottom: 1.5rem;
	}

	#socialsSection a {
		padding: 0.5rem;
		font-size: 1.2rem;
	}

	#socialsSection img {
		width: 3rem;
	}

	.link {
		margin-bottom: 1rem;
	}
}
