* {
	padding: 0;
	margin: 0;
	transition: 0.3s;
}

html {
	scroll-behavior: smooth;
}
a {
	color: inherit;
}


  body::-webkit-scrollbar {
	width: 1em;
  }
   
  body::-webkit-scrollbar-track {
	/*outline:rgba(0, 0, 0, 0.7) solid 2px;*/
	background-color: none;
  }
   
  body::-webkit-scrollbar-thumb {
	background-color: #676767;
	border-radius: 25px;
  }


body {
	font-family: 'Poppins', sans-serif;
	background-color: #e0e0e0;
}
nav {
	position: fixed;
	display: flex;
	flex-direction: row;
	/*background-color: #111e2f*/;
	width: 100%;
	justify-content: flex-end;
	/*box-shadow: 0px 7px 19px -6px rgba(0,0,0,0.75);*/
	z-index: 100;
	top: 0px;
	backdrop-filter: blur(4px);
	transition: 0.3s;
}
nav:hover {
	background-color: #111e2f;
	color: #ededed;
	transition: 0.2s;
	
}
nav a {
	transition: 0.1s;
	text-decoration: none;
	color: inherit;
	/*color: #ededed*/;
	padding: 15px 20px;
	text-transform: uppercase;

}

nav a:hover {
	filter: brightness(0.5);
	transition: 0.3s;
}

.start {
	margin-right: auto;
	font-size: 1.3em;
}


.block {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	/*background-color: white;*/
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	position: relative;
	text-align: center;

}

.block .content {
	text-align: left;
	justify-content: space-evenly;
	display: flex;
	align-items: center;
	flex-direction: row;
	color: #111e2f;
	box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;
	padding: 20px;
	height: 500px;
	border-radius: 20px;
	width: 60vw;
	height: 50vh;
	margin: 100px auto 0 auto;
}

.block .content:hover {
	transform: scale(1.04);
}

.block .content img {
	filter: grayscale(50%);
	height: 100%;
}
.profile {
	width: 500px;
}
.get-in-touch {
	text-decoration: none;
	color: #4b5264;
	/*color: #e0e0e0;*/
	border: 2px solid #4b5264;
	/*background-color: #4b5264;*/
	padding: 12px;
	border-radius: 10px;
}
.get-in-touch:hover {
	color: #ededed;
	background-color: #313540;
	border: 2px solid #313540;
}
.down {
	color: #111e2f;
	font-size: 3em;
	text-align: center;
	width: fit-content;
	margin: auto;
}
.down i {
	filter: opacity(20%);
}
.down i:hover {
	filter: opacity(100%);
}


/* start of about */

#about {
	background: linear-gradient(rgba(0, 0, 0, 0.99), rgba(0, 0, 0, 0.94)), url('https://cdn.discordapp.com/attachments/904992588220739604/1099027844451012638/341165117_222480803805976_4890297721542585986_n_1.jpg');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	justify-content: center;
	background-color: #22242a;
	color: #39FF14;
	font-family: 'Space Mono', monospace;
}
.about-content{
	margin: 40px auto;
	width: fit-content;
	text-align: left;
	font-size: 1.3em;
}
.about-content ol{
	list-style-position: inside;
}
.tech-icons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 1.5em;
	width: 250px;
	margin: 10px auto 0px auto;
}
#blog {
	justify-content: center;
}
.blog-container {
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 0 auto;
}
.blog-card {
	width: 22vw;
	max-height: 70vh;
	border-radius: 20px;
	box-shadow:  20px 20px 60px #bebebe,
				-20px -20px 60px #ffffff;
	display: flex;
	flex-direction: column;
	padding: 30px;
	justify-content: space-between;
	align-items: center;
	margin-top: 5vh;
}
.blog-card img {
	height: 35vh;
	object-fit: cover;
	width: 18vw;
	margin-bottom: 3em
}
.blog-card p {
	margin: 10px 0px;
	line-height: 1.3;
	text-align: justify;
	color: #424242;
}
.blog-card a {
	margin-top: auto;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: #313540;
	text-decoration: none;
	color: #e0e0e0;
}
.blog-card a:hover {
	background-color: #111e2f;
	color: #4b5264;
}
#experience {
	text-align: left;
	width: 100%;
	display: flex;
	justify-content: center;
	height: auto;
	padding-top: 10vh;
}
.experience-container {
	width: 95%;
	margin: 0 auto;
}
.exp-item {
	display: flex;
	padding: 10px 0;
	flex-direction: column;
}
.exp-item span {
	color: gray;
}
.exp-item h2 {
	color: #4b5264;
}
.line {
	background-color: gray;
	margin-left: 10px;
	height: 2px;
	width: 100%;
}
.experience-container .title {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #111e2f;
}
footer {
  background-color: #111e2f;
  width: 100%;
  display: flex;
  height: 20vh;
  margin-top: 20vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ededed;
}
footer .socials a i {
  font-size: 1.5em;
  margin: 10px;
}
footer .socials a i:hover {
  filter: brightness(0.5);
}
.contact-container {
	width: 60vw;
	height: 70vh;
	margin: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0px 10px 67px -5px rgba(0,0,0,0.3);
}

.contact-container div img {
	animation: blob;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.contact-container > div {
	display: flex;
	min-width: 30vw;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 100%;
}
.contact-img {
	mix-blend-mode: multiply;
}
.contact-form-container {
	display: flex;
	background-color: #2E4052;
	padding: 0 20px;
	height: 100%;
	flex-direction: row;
	min-width: fit-content;
	min-height: fit-content;
}
.contact-form-container form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.contact-form-container form > *  {
	outline: none;
	border: none;
	margin: 5px;
	width: 20em;
	border-radius: 5px;
	padding: 10px;
	resize: none;
	font-size: 12pt;
	font-family: 'Poppins', sans-serif;
}
.contact-form-container form > textarea {
	height: 14em;
}
::placeholder {
	font-size: 12pt;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}
input[type=submit] {
	background-color: #111e2f;
	color: #ededed;
	width: 20em;
	margin-top: 20px;
}
input[type=submit]:hover {
	filter: brightness(0.5);
}


@keyframes blob {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-10px);
	}
}