@keyframes intro { 0%{opacity: 1} 100%{opacity: 0;}}
@keyframes zintro { 0%{z-index: 3;} 100%{z-index: -1;}}

body {
  background-color: #1E1E1E;
  color: #F5EFDF;
  margin: 0 auto;
	font-family: Poppins;
}

header {
	width: 80%;
  display: flex;
  justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 20px;
}
header img {
  width: 100px;
}
header h2{
	font-size: 18px;
	color: #F5EFDF;
	user-select: none;
	transform: scale(1);
	transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
	
}
header h2:hover{
	transform: scale(1.2);
	font-size: 18px;
	color: #FF2F45
}
section.work{
	width: 80%;
	display: grid;
	justify-content: center;
	grid-template-columns: 3fr 3fr 3fr 0fr 0fr 0fr;
	gap: 0;
	padding: 1rem 1rem;
	margin: 0 auto;

	transition: grid-template-columns 0.8s;
}

section.work div{
	overflow: hidden;
	opacity: 1;
	transition: opacity 0.8s;
}

section.work div.hide{
	opacity: 0;
}
figure{
	padding: 0 0.5rem;
	line-height: 1.3;
}

figure img {
  transform: scale(1) rotate(0deg); 
  margin-bottom: 10px;
  transition: transform 0.5s ease-in-out;
}

figure img:hover {
  transform: scale(0.9) rotate(2deg); 
}

a{
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	color: #F5EFDF;
	transition: color 0.3s ease-in-out;
}
p{
font-size: 14px;
color: #F5EFDF;

}
a:hover{
	color: #FF2F45;
}

section.info{
	width: 80%;
	display: flex;
	margin: 0 auto;
	padding: 200px 0px 50px 0px;
	line-height: 1.3;
	justify-content: center;
	border-top: solid 1px #F5EFDF;
	margin-top: 200px;
}

section.info div.column{
	display: flex;
	width: 40%;
}
section.info div.column ul{
	width: 50%;
}

section.info div.text{
	width: 60%;
	margin: 0 auto;
}

section.info div.text p{
	font-size: 12px;
	padding-right: 50px;
}
section.info div.text h1{
	font-size: 15px;
	font-weight: 500;
}

section.info div.column li{
	font-size: 12px;
}

section.info li.bold{
	font-weight: 700;
}
section.info li.social{
transition: color 0.3s ease-in-out;
}

section.info li.social:hover{
color:#FF2F45 ;
}

footer{
	display: flex;
	justify-content: center;
	margin: 100px 0;
}

footer svg{
	width: 100px;
}

section.intro{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;

	text-align: center;
	align-content: center;
	background-color: #1E1E1E;
	z-index: 3;

 animation: intro 1s ease-out 2s forwards, zintro 1s 3s forwards;

}

section.intro img{
	width: 100px;
}
section.intro svg{
	width: 80px;
}

@media  (max-width: 800px){
	header {
	display: block;
	text-align: center;
	padding: 20px 20px 20px 20px;
	margin: 0 auto;
}

header h2{
	margin-top: 20px;
}

	section.work{
	width: 100%;
	grid-template-columns: 3fr 3fr 0fr 0fr 0fr 0fr;

	transition: grid-template-columns 0.8s;
}
a{
	font-size: 16px;
}
p{
font-size: 12px;
color: #F5EFDF;
}

section.info{
	width: 95%;
	display: block;
	padding: 50px 0px 50px 0px;
	margin-top: 50px;
}

section.info div.column{
	width: 100%;
	padding: 0 20px;
	text-align: center;
}
section.info div.column ul{
	width: 50%;
	
}

section.info div.text{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
	padding: 0 30px;
}
section.info div.text p{
	font-size: 12px;
	padding-right: 0px;
}
section.info div.text h1{
	font-size: 15px;
	font-weight: 500;
}
footer{
	display: flex;
	justify-content: center;
	margin: 50px 0;
}

}