
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6, span{
	line-height : 1.25;
}
body {
font-family: 'Space Grotesk', sans-serif;
  padding: 0 var(--spacing-3);
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction:column;
}
.header {
	z-index: 1;
  background: linear-gradient(-45deg, #F1F6F9, #14274E, #394867,#14274E, #394867, #394867,#F1F6F9); 
	background-size: 150% 150%;
	width: 100%;
	height: 100%;
	animation: animate 15s ease infinite;
}
li {
	list-style-type: none;
  }
.nav {
	height: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: flex-start;
}
.nav_element {
	display: inline-block;
	padding: 40px 15px;
}
.link{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	padding: 5px 10px;
}
.link:hover {
	background: #fff;
	color: #000;
}
.header h2{
	text-align: center;
	margin-top: 5%;
	margin-bottom: 5%px;
}
.typewrite {
	color: #fff;
	font-size: 60px;
	text-decoration: none;
}
.header p {
	text-align: center;
	font-size: 20px;
	width: none;
	color: #fff;
	line-height: 1.5;
}
@keyframes animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.about-me__links{
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
	margin-bottom: 23.5%;
    text-align: center;
}

/* icon links  */
.about-me__link1{
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    padding: 0 16px;
	display: inline;
	width: 100%;
}
.about-me__link{
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    padding: 0 16px;
	width: 100%;
}
#footer{
	bottom: 0%;
	position: absolute;
}

/* ABOUT ME SECTION */
.about_me_section{
	display: flex;
	flex-direction: row-reverse;
}
.about-me-container {
    display: flex;
    width: 100%;
    margin-bottom: 4%;
	margin-left: 11%;
    padding: 0px 0%;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    align-content: stretch;
    flex-wrap: nowrap;
}
.about-me-text-container {
text-align: left;
	width: 80%;
	}

#top{
		font-size: 4vw;
		text-align: center;
		color: #fff;
		margin-bottom: 2%;
	  }


/* image style */
.img_container {
	width: 100%;
    display: flex;
    /* transform: scale(.6); */
    position: inherit;
    justify-content: space-evenly;
    flex-direction: column;
   margin-left: 10%;
    flex-wrap: wrap;
}
	
.portrait{
	border-radius: 50%;
	display: flex;
	width: 48%;
	height: auto;
}
	/*style for language sections*/
	.section__title {
	margin-bottom: 0;
	text-align: center;
	color: #fff;
	font-size: 3vw;
	  }

	.language__img {
	width: 100%;
	max-width: auto;
	transition: all 300ms;
	  }
	.language:hover .language__img {
	filter: brightness(80%);
	opacity: 0.86;
	transform: scale(0.9);
	  }
	  
	.language {
	width: 5%;
	display: flex;
	justify-content: center;
	position: relative;
	  }
	.language__img--wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40% 10px;
	  }
	  
	.language__list {
	display: flex;
	justify-content: center;
	width: 100%;
	flex-wrap: wrap;
	}
	  
	.language__name {
	position: absolute;
	bottom: 0;
	transform: scale(0);
	transition: all 300ms;
	font-size: 14px;
	opacity: 0;
	 }
	.language:hover .language__name {
	transform: scale(1);
	opacity: 1;
	color: #fff;
	  }
	  
	/* PROJECTS */
	.container {
		padding: 50px 0;
	  }
	  .row {
		width: 100%;
		max-width: 835px;
		margin: 0 auto;
		padding: 0 12px;
	  }
	  
	.project {
		margin-bottom: 135px;
	  }
	  
	.project:last-child {
		margin-bottom: 40px;
	  }
	
	  .project__img {
		width: 100%;
		transition: all 500ms ease;
	  }
	  
	  .project__wrapper {
		display: flex;
		box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
		border-radius: 20px;
		overflow: hidden;
		position: relative;
	  }
	  .project__wrapper:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: #1c1d25;
		opacity: 0;
		transition: opacity 450ms ease;
		z-index: 2;
		transform: translateY(100%);
	  }
	  .project:hover .project__wrapper:before {
		transform: translateY(0);
		opacity: 0.7;
	  }
	  .project:hover .project__img {
		transform: scale(1.07);
		filter: blur(5px);
	  }
	  
	  .project:hover .project__description {
		opacity: 1;
		transform: translateY(-50%);
	  }
	  
	  .project__list {
		padding-top: 40px;
	  }
	  
	  .project__description {
		position: absolute;
		top: 50%;
		left: 90px;
		transform: translateY(100%);
		max-width: 550px;
		z-index: 3;
		opacity: 0;
		transition: transform 450ms, opacity 300ms;
	  }
	  
	  .project__description--title {
		font-size: 35x;
	  }
	  
	  .project__description--para {
		margin: 16px 0;
	  }
	  
	  .project__description--link {
		font-size: 20px;
		margin-right: 16px;
	  }
	
	.project__description--title,
	.project__description--sub-title,
	.project__description--para,
	.project__description--link {
	text-align: left;
	color: #fff;
	  }

	  /* FOOTER */

footer {
	background-color: #708090 ;
  }
  
  .footer__social--list {
	width: 100%;
	max-width: 500px;
	display: flex;
	justify-content: space-around;
	margin-bottom: 28px;
  }
  .footer__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3% 0;
  }
  
  .footer__logo--img {
	/* width: 70px; */
	height: 70px;
	
  }
  
  .footer__social--link,
  .footer__copyright,
  .footer__logo--popper {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
  }
  
  .footer__logo--popper {
	position: absolute;
	right: 0;
	top: 30px;
	font-weight: 700;
	opacity: 0;
	transition: all 300ms ease;
  }
  
  .footer__anchor {
	margin-bottom: 20px;
	position: relative;
  }
  
  .footer__anchor:hover .footer__logo--popper {
	transform: translateX(60px);
	opacity: 1;
  }



  /* Display for smaller screens */
@media (max-width: 768px) {
nav {
  height: 68px;
}

h1 {
  font-size: 28px;
}

.about-me__info--para {
  font-size: 18px;
}

.language {
  width: calc(100% / 10);
}

.project__description--para {
  font-size: 14px;
}

.project__description {
  left: 30px;
  padding-right: 30px;
}
}
  
  /* PHONES */
  @media (max-width: 480px) {
.nav__link:not(:last-child) {
  display: none;
}

.project__wrapper {
  border-radius: 0;
}

.project__description {
  padding: 0;
  left: 0;
  width: 100%;
}

.project__description--para {
  display: none;
}

.project__description--links {
  display: flex;
  justify-content: center;
}

.project__description--title {
  font-size: 32px;
  line-height: 1;
  text-align: center;
}

.project__description--sub-title {
  text-align: center;
  margin: 12px 0;
}
  }