:root {
	--mainColor: #eaeaea;
	--secondaryColor: #fff;

	--borderColor: #c1c1c1;

	--mainText: black;
	--secondaryText: #4b5156;

	--themeDotBorder: #24292e;

	--previewBg: rgb(251, 249, 243, 0.8);
	--previewShadow: #f0ead6;


	--buttonColor: black;


}


html,
body {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
}

body * {
	transition: 0.3s;
}

.nav-links {
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
	color: var(--mainText);
	font-family: 'Russo One', sans-serif;
	font-weight: 500;
}

p,
li,
span,
label,
input,
textarea {
	color: var(--secondaryText);
	font-family: 'Roboto Mono', monospace;
}

a {
	text-decoration: none;
	color: #17a2b8;
}

ul {
	list-style: none;
}

h1 {
	font-size: 56px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}


.s1,.s3,.s5 {
	background-color: var(--mainColor);
	border-bottom: 1px solid var(--borderColor);
	overflow: auto;
}

.s2,.s4 {
	background-color: var(--secondaryColor);
	border-bottom: 1px solid var(--borderColor);
	overflow: auto;
}

/* .s3 {
	background-color: var(--mainColor);
	border-bottom: 1px solid var(--borderColor);
	overflow: auto;
}

.s4 {
	background-color: var(--secondaryColor);
	border-bottom: 1px solid var(--borderColor);
	overflow: auto;
	margin-bottom: 10px;
} */



.main-container {
	width: 1200px;
	margin: 0 auto;
}

.greeting-wrapper {
	margin: 10px 0;
	padding: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.greeting-wrapper a {
	margin: 0 50px;
	font-size: 1.5em;
	font-weight: bold;
	color: var(--mainText);
	padding: 8px;
	position: relative;
}


.greeting-wrapper a.active {
	color: rgb(83, 49, 156);
}

.greeting-wrapper a:hover {
	color: rgb(83, 49, 156);
	cursor: pointer;
}

.greeting-wrapper .active::before {
	content: "";
	height: 2px;
	width: 200%;
	background-color: rgb(83, 49, 156);
	position: absolute;
	bottom: -15px;
	z-index: 2;
	left: -50%;
	border-radius: 5px;
}

/* .greeting-wrapper{
	display: grid;
	text-align: center;
	align-content: center;
	min-height: 10em;

} */

.intro-wrapper {
	background-color: var(--secondaryColor);
	border: 1px solid var(--borderColor);
	border-radius: 5px 5px 0 0;


	-webkit-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);

	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		'nav-wrapper nav-wrapper'
		'left-column right-column'
	;
}


.nav-wrapper {
	border-radius: 5px 5px 0 0;
	grid-area: nav-wrapper;
	border-bottom: 1px solid var(--borderColor);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--mainColor);
}

#navigation a {
	color: var(--mainText);
}


#navigation {
	margin: 0;
	padding: 10px;
}

#navigation li {
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
}

.dots-wrapper {
	display: flex;
	padding: 10px;
}

#dot-1 {
	background-color: #FC6058;
}

#dot-2 {
	background-color: #FEC02F;
}

#dot-3 {
	background-color: #2ACA3E;
}

.browser-dot {
	background-color: black;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	margin: 5px;

	-webkit-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);

}


.left-column {
	grid-area: left-column;
	padding-top: 50px;
	padding-bottom: 50px;
}

#profile_pic {
	display: block;
	margin: 0 auto;

	height: 200px;
	width: 200px;
	object-fit: cover;
	border: 2px solid var(--borderColor);
}


#theme-options-wrapper {
	display: flex;
	justify-content: center;
}

.theme-dot {
	height: 30px;
	width: 30px;
	background-color: black;
	border-radius: 50%;

	margin: 5px;
	border: 2px solid var(--themeDotBorder);

	-webkit-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 3px -1px rgba(0, 0, 0, 0.75);

	cursor: pointer;
}


.theme-dot:hover {
	border-width: 5px;
}


#light-mode {
	background-color: #fff;
}

#blue-mode {
	background-color: #192734;
}

#green-mode {
	background-color: #78866b;
}

#purple-mode {
	background-color: #7E4C74;
}

#settings-note {
	font-size: 12px;
	font-style: italic;
	text-align: center;
}

.right-column {
	grid-area: right-column;
	display: grid;
	align-content: center;
	box-sizing: border-box;
	/* padding-top: 50px; */
	padding-bottom: 50px;
}


#preview-shadow {
	background-color: var(--previewShadow);
	max-width: 435px;
	height: 300px;
	padding-left: 30px;
	padding-top: 30px;
}

#preview {
	width: 435px;
	border: 1.5px solid #17a2b8;
	background-color: var(--previewBg);
	padding: 15px;
	height: 100%;
	position: relative;
}

.corner {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 1.5px solid #17a2b8;
	background-color: #fff;
	position: absolute;
}

#corner-tl {
	top: -5px;
	left: -5px
}

#corner-tr {
	top: -5px;
	right: -5px
}


#corner-br {
	bottom: -5px;
	right: -5px
}


#corner-bl {
	bottom: -5px;
	left: -5px
}

.about-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	padding-bottom: 50px;
	padding-top: 50px;
	gap: 100px;
}


#skills {
	display: flex;
	justify-content: space-evenly;
	background-color: var(--previewShadow);
}

#skills ul li {
	font-size: 14px;
}

.experience-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	padding-bottom: 50px;
	gap: 100px;
}

.experience-wrapper-left {
	background-color: var(--mainColor);
	border: 1px solid (--borderColor);
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	position: relative;
	padding: 20px 0 0 0;
}

#experience-left-line {
	margin: 0 0 0 30px;
	height: 82%;
	position: absolute;
	border-left: 2px solid var(--mainText);
}

#experience-right-line {
	margin: 0 0 0 30px;
	height: 51%;
	position: absolute;
	border-left: 2px solid var(--mainText);
}

#right-content h3 {
	text-align: center;
}

#right-content p {
	margin: 5px 0 0 60px;
}

#right-content h5 {
	margin: 5px 0 0 50px;
}

.education-item {
	margin-bottom: 50px;
}

.education-item-dot1, 
.education-item-dot2,
.education-item-dot3,
.education-item-dot4 {
	width: 20px;
	height: 20px;
	background-color: var(--mainText);
	border-radius: 50%;
	position: absolute;
	margin: 5px 20px;
}

.education-wrapper {
	background-color: var(--mainColor);
	border: 1px solid (--borderColor);
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	position: relative;
}

#left-line {
	margin: 59px 0 0 30px;
	height: 70%;
	position: absolute;
	border-left: 2px solid var(--mainText);
}

#right-content h3 {
	text-align: center;
}

#experience-left-content p {
	margin: 5px 0 0 60px;
}

#experience-left-content h5 {
	margin: 5px 0 0 50px;
}

#experience-right-content p {
	margin: 5px 0 0 60px;
}

#experience-right-content h5 {
	margin: 5px 0 0 50px;
}

.experience-item {
	margin-bottom: 50px;
}

.experience-item-dot1, 
.experience-item-dot2,
.experience-item-dot3,
.experience-item-dot4 {
	width: 20px;
	height: 20px;
	background-color: var(--mainText);
	border-radius: 50%;
	position: absolute;
	margin: 5px 20px;
}

.post-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, 360px);
	gap: 20px;
	justify-content: center;
	padding-bottom: 50px;
}

.post {
	border: 1px solid var(--borderColor);
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
}

.thumbnail {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-preview {
	background-color: #fff;
	padding: 15px;
}

.post-title {
	color: black;
}

.post-intro {
	color: #4b5156;
	font-size: 18px;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, 480px);
	gap: 20px;
	justify-content: center;
	padding-bottom: 50px;
}

.contact {
	border: 1px solid var(--borderColor);
	height: 30em;
	margin: 20px 0;
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
}

.location-wrapper {
	background-color: var(--mainColor);
	padding: 15px;
	display: flex;

	border: 1px solid var(--mainColor);
	height: 25em;
	margin: 20px 0;
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
}

.location {
	margin: 0 180px 0 50px;
}

.location-wrapper h6 {
	font-size: 22px;
	margin-bottom: 15px;
}

.location-wrapper i {
	display: inline;
	padding: 4px 0px 5px 9px;
	border-radius: 10px;
	color: var(--mainText);
	padding-right: 10px;
	font-size: 22px;
	text-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	;
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);

	background-color: cadetblue;
	opacity: 0.8;
}

.location-wrapper p {
	display: inline;
	margin-left: 10px;
}

.location-title {
	color: var(--mainText);
}

.location-intro {
	color: var(--mainText);
	font-size: 18px;
}

.location-wrapper .social-media {
	width: 40%;
	padding-left: 50px;
	margin: 50px;
	-webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
	box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);

	background-color: var(--secondaryColor);

}

.social-media-item {
	margin-bottom: 1.5em;
}

.social-media-item p:hover {
	color: blue;
}

@media screen and (max-width: 1200px) {
	.main-container {
		width: 95%;
	}
}

@media screen and (max-width: 800px) {
	.intro-wrapper {
		grid-template-columns: 1fr;
		grid-template-areas:
			'nav-wrapper'
			'left-column'
			'right-column'
		;
	}

	.right-column {
		justify-content: center;
	}

}

@media screen and (max-width: 400px) {
	.greeting-wrapper {
		flex-direction: column;
	}

	#preview-shadow {
		max-width: 280px;
		height: 180px;
		padding-left: 10px;
		padding-top: 10px;
	}

	#preview {
		width: 280px;

	}

}