@charset "utf-8";
/* CSS Document */


body{
	background-color: whitesmoke;
	margin: 0;
	pandding:0;
}

/* navigation */
ul{
	list-style: none;
}
a{
	text-decoration: none;
}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background-color: #FFFFFF;
	box-shadow: 2px 2px 12px;
	padding: 0 5%;
}
nav ul{
	display: flex;
}
nav ul li a{
	margin: 30px;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #000000;
	font-size:15px;
	font-weight: 700;
}
.logo{
	font-family: baumans;
	color: #000000;
	font-size: 22px;
	font-weight:bold;
	letter-spacing:5px;
}
.active{
	font-weight: bold;
	color: #2d2a2a;
}

/* main */
main {
    min-height: 1000px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
}

.heading{
	font-family: calibri;
	font-size: 38px;
	text-align: center;
	font-weight: 500;
	padding: 10px 20px;
	letter-spacing: 2px;
}
.heading h1{
	font-family: calibri;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	color:#17d1ac;
	text-transform: uppercase;
	letter-spacing: 20px;
}
.heading p{
    font-size: 20px;
    text-align: center;
    max-width: 90%;
    margin-left: 5%;
}

/*project part*/
.project{

}
img{
    border-width: 20px;
    border-style: solid;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-text h1{
    font-size: 38px;
    font-weight: 1000;
    color: #17d1ac;
    letter-spacing: 2px;
    font-style: normal;
    margin-bottom: 10px;
	
}
.project-text h2{
    font-size: 24px;
    font-weight: 400;
}
.project-text h1,h2{
	margin: 0px;
	padding: 0px;
}
.project-text p{
	font-size: 20px;
}
/*project 1*/
.section1{
	display: flex;
	align-items: center;
	justify-content: space-between;	
	padding: 50px 5% 0px 5%;
}
.project-text-left{
    font-family: calibri;
    margin-left: 50px;
    text-align: justify;
}

/*project 2*/
.section2{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 5% 0px 5%;
}
.project-text-right{
    font-family: calibri;
    width: 90%;
    text-align: justify;
}

/*project 3*/
.section3{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 5% 50px 5%;

}




/*button*/
#btn{
    width: 100%;
    display: flex;
    justify-content: center;
}
#btn button{
    color: #FFFFFF;
    font-size: 1rem;
    font-family: calibri;
    width: 150px;
    height: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: #1E1E1E;
    border: none;
    outline: none;
    box-shadow: 2px 5px 6px rgba(0,0,0,0.2);
    margin-left: 10px;
    margin-right: 10px;
}
#btn button:hover{
	background-color: #17d1ac;
	color:#000000;
	transition: all ease 0.5s;
	font-weight: bold;
}


/* footer */
footer {
    min-height: 10px;
    background-color: #FFFFFF;
	justify-content: space-between;
	display: flex;
	padding: 0 2%;
}
footer p{
	font-family: calibri;
	font-size: 18px;
	color:#191919;
	line-height:30px;
}
.social-icons a{
	width:40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:#e6e3e3;
	margin:20px 10px;
	border-radius:50%;
}
.social-icons{
	display: flex;
	float:right;
}
.social-icons i,.social i{
	color:#000000;
}
.social-icons a:hover{
	background-color:#000000;
	box-shadow:2px 2px 12px rgba(0,0,0,0.2);
	transition:all ease 0.5s;
}
.social-icons a:hover i,
.social a:hover i{
	color:#FFFFFF;
	transition:all ease 0.5s;
}


/* Responsive layout - when the screen is 600px wide */
@media screen and (max-width: 600px) {
	.section1{
    flex-direction: column;
    align-items: center;
	}
	.section2{
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
	}
	.section2 img{
    width: 400px;		
	}
	.section3{
    flex-direction: column;
    align-items: center;
	}
	.project-text{
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-left: -50px;
    margin-top: 30px;
	}
	.project-text-right{
    margin-right: 50px;
    margin-left: 50px;
	}
		
	footer{
    flex-direction: column;
    text-align: center;
	align-items: center
	}
}