:root{
	--mainColor: #eaeaea;
	--secondaryColor: #fff;

	--borderColor: #c1c1c1;

	--mainText:black;
	--secondaryText:#4b5156;

	--themeDotBorder: #24292e;

	--previewBg: rgb(251,249,243,0.8);
	--previewShadow: #f0ead6;

	--buttonColor: black;

	--backgroundGradient: linear-gradient(to right, rgba(202, 203, 204, 0.4), rgba(252, 252, 252, 0.4));
	
}


html,body{
	padding: 0;
	margin: 0;
}

body*{
	transition: 0.3;
}

h1,h2,h3,h4,h5,h6,strong{
	color:  var(--mainText);
	
	font-weight: 500;
	font-family: 'Truculenta', sans-serif;
}

p,li,span, label, input,textarea{
	color:  var(--secondaryText);
	font-family: 'Zen Kurenaido', sans-serif;
	

}

a{
	text-decoration: none;
	color: #17a2b8;
	font-weight: 15px;
}

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{
	background-color:var(--mainColor) ;
	border-bottom:1px solid var(--borderColor);
	overflow: auto;

	background-image: var(--backgroundGradient), url(images/background-gb.jpg);
}

.s2{
	background-color:var(--secondaryColor) ;
	border-bottom: 1px solid var(--borderColor);
	overflow: auto;
}

.main-container{
	width: 1200px;
	margin: 0 auto;
}

.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: -16px -13px 7px 2px rgba(0,0,0,0.61); 
	box-shadow: -16px -13px 7px 2px rgba(0,0,0,0.61);

	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);
	height: 50px;
}

#navigation{
	margin: 0;
	padding: 10;
}

#navigation a{
	color: var(--mainText);
}

#navigation li{
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
}

.dots-wrapper{
	display: flex;
	padding: 20px;
}

#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;

	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-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);

}

.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-dot{
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: black;

	margin: 5px;
	border: 2px solid var(--themeDotBorder);

	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-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);

	cursor: pointer;
}

.theme-dot:hover{
	border-width: 5px;
}

#light-mode{
	background-color: #fff;
}

#blue-mode{
	background-color: #192734;
}

#dark-mode{
	background-color: #0d0d0d;
}

#green-mode{
	background-color: #36bd17;
}

#purple-mode{
	background-color: #8B008B;
}

#settings-note{
	font-size: 12px;
	font-style: italic;
	text-align: center;
}

#theme-options-wrapper{
	display: flex;
	justify-content: center;
}

.right-column{
	grid-area: right-column;
	display: grid;
	align-content: center;

	padding-top: 50px;
	padding-bottom: 50px;
}

#preview-shadow{
	background-color: var(--previewShadow);
	border-top-left-radius: 25%;
	border-bottom-right-radius: 25% ;
	width: 250px;
	height: 150px;
	padding-left: 30px;
	padding-top: 30px;

}

#preview{
	width: 250px;
	border-top-left-radius: 25%;
	border-bottom-right-radius: 25% ;
	border: 1.5px solid; #17a2b8;
	background-color: var(--previewBg);
	padding: 15px;
	position: relative;
	border-style: solid;
}

.corner{
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 1.5px solid #17a2b8;
	background-color: #fff;
	position: absolute;
}


.about-wrapper{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
	padding-top: 50px;
	padding-bottom: 50px;
	gap: 100px;
}

#skills{
	display: flex;
	justify-content: space-evenly;
	background-color: var(--previewShadow);
}

.social-links{
	display: grid;
	align-content: center;
	text-align: center;

}

#social_img{
	width: 100%;

}

.post-wrapper{
	display: grid;
	grid-template-columns: repeat(auto-fit, 380px);
	gap: 20px;
	justify-content: center;
	padding-bottom: 50px;
	
	border-bottom-right-radius: 25%;

}

.post-wrapper-preview{
	display: grid;
	grid-template-columns: repeat(auto-fit, 280px);
	gap: 20px;
	justify-content: center;
	padding-bottom: 50px;
	
	border-bottom-right-radius: 25%;

}

.post{
	border: 1 solid var(--borderColor);

	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-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);
}

.thumbnail-preview{

	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-bottom: 1px solid var(--borderColor);

}

.thumbnail{

	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-bottom: 1px solid var(--borderColor);

}

.post-preview{
	background-color: #fff;
	padding: 15px;
}

.post-title{
	color: black;
	margin: 0;

}

.post-intro{
	color: #4b5156;
	font-size: 16px;

}

#contact-form{
	display: block;
	max-width: 600px;
	margin: 0 auto;
	border: 1px solid var(--borderColor);
	padding: 15px;
	border-radius: 5px;
	background-color: var(--mainColor);
	margin-bottom: 50px;
}

#contact-form label{
	line-height: 2.7em;
}

#contact-form textarea{
	min-height: 100px;
	font-size: 14px;
}

.input-field{
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: var(--secondaryColor);
	border-radius: 5px;
	border: 1px solid var(--borderColor);
	font-size: 14px;
}

#submit-btn{
	margin-top: 10px;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fff;
	background-color: var(--buttonColor);
	border: none;
}


@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;
	}
}


.main-container-project{
	width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: grid;

	grid-template-columns:1fr 1fr ;
	grid-template-areas: 
		'project-title project-title'
		'description project-pictures1'	
	;	
}

.firstImage{
	display: block;
	margin: 0 auto;

	height: auto;
	width: 350px;
	object-fit: cover;
}



.project-title{
	grid-area: project-title;
}
.description{
	background-color:var(--mainColor) ;
	border:1px solid var(--borderColor);
	overflow: auto;
	
	padding: 10px;
	text-align: center;
	grid-area: description;

}

.project-pictures1{
	grid-area: project-pictures1;	
}

@media screen and (max-width:500px){
	.main-container-project{
		
		grid-template-columns:1fr;
		grid-template-areas: 
			'description'
			'project-pictures1' 
		;
	}
}