*{
	padding: 0;
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
/* hero section  */
.hero{
	height: 100vh;
	width: 100%;
	/* background image below*/
	background-image: url(../img/2966497.jpg);
	background-size: cover;
	background-position: center;
}
/* nav bar  */
nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 45px;
	padding-left: 8%;
	padding-right: 8%;
}
.logo{
	color: #ece6db;
	font-size: 35px;
	letter-spacing: 1px;
	cursor: pointer;
}
span{
	color: #1f51ff;
}
nav ul li{
	list-style-type: none;
	display: inline-block;
	padding: 10px  25px;
}
nav ul li a{
	color: #ece6db;
	text-decoration: none;
	font-weight: bold;
	text-transform: capitalize;
}
nav ul li a:hover{
	color: #1f51ff;
	transition: .4s;
}
.btn{
	background-color:#1f51ff;
	color: #ece6db;
	text-decoration: none;
	border: 2px solid transparent;
	font-weight: bold;
	padding: 10px 25px;
	border-radius: 30px;
	transition: transform .4s; 
}
.btn:hover{
	transform: scale(1.2);
}
.content{
	position: absolute;
	top: 50%;
	left:8%;
	transform: translateY(-50%);
}
h1{
	color: #ece6db;
	margin: 20px 0px 20px;
	font-size: 75px;
}
h3{
	color: #ece6db;
	font-size: 25px;
	margin-bottom: 50px;
}
h4{
	color: #ece6db;
	letter-spacing: 2px;
	font-size: 20px;
}

/* about section  */
.about{
	height: 100vh;
	width: 100%;
	padding: 100px 0px;
	background-color: #191919;
}
.about img{
	height: auto;
	width: 430px;
}
.about-text{
	width: 550px;
}
.main{
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content:space-evenly;
}
.about-text h2{
	color: #ece6db;
	font-size: 75px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.about-text h5{
	color: #ece6db;
	letter-spacing: 2px;
	font-size: 22px;
	margin-bottom: 25px;
	text-transform: capitalize;
}
.about-text p{
	color: #ece6db;
	letter-spacing: 1px;
	line-height: 28px;
	font-size: 18px;
	margin-bottom: 45px;
}
button{
	background-color:#1f51ff;
	color: #ece6db;
	text-decoration: none;
	border: 2px solid transparent;
	font-weight: bold;
	padding: 13px 30px;
	border-radius: 30px;
	transition: .4s; 
}
button:hover{
	background-color: transparent;
	border: 2px solid #1f51ff;
	cursor: pointer;
}

/* skills section  */
.skills{
	background: #101010;
	width: 100%;
	height: 100vh;
	padding: 100px 0px;
}
.title h2{
	color: #ece6db;
	font-size: 75px;
	width: 1130px;
	margin: 30px auto;
	text-align: center;
}
.box{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}
.card{
	height: 365px;
	width: 335px;
	padding: 20px 35px;
	background: #191919;
	border-radius: 20px;
	margin: 15px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.card i{
	font-size: 50px;
	display: block;
	text-align: center;
	margin: 25px 0px;
	color: #1f51ff;

}
h5{
	color: #ece6db;
	font-size: 23px;
	margin-bottom: 15px;
}
.pra p{
	color: #ece6db;
	font-size: 16px;
	line-height: 27px;
	margin-bottom: 25px;
}
.card .button, .card-button{
	background-color:#1f51ff;
	color: #ece6db;
	text-decoration: none;
	border: 2px solid transparent;
	font-weight: bold;
	padding: 9px 22px;
	border-radius: 30px;
	transition: .4s; 
}
.card .button:hover, .card-button:hover{
	background-color: transparent;
	border: 2px solid #1f51ff;
	cursor: pointer;
}

/* project section  */
.projects {
    width: 100%;
	height: auto;
    padding: 100px 0px;
    background-color: #191919;
}
.projects-text {
    width: 90%;
    max-width: 1130px;
    margin: 0 auto;
    text-align: center;
}
.projects-text h2 {
    color: #ece6db;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 50px;
}
.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.project-card {
    background: #101010;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    width: 30%;
    padding: 20px;
    margin: 15px;
    box-sizing: border-box;
}
.project-card img {
    width: 100%;
    border-bottom: 2px solid #1f51ff;
    margin-bottom: 20px;
}
.project-card h3 {
    color: #ece6db;
    font-size: 22px;
    margin-bottom: 15px;
}
.project-card p {
    color: #ece6db;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
}
.project-card .button {
    background-color: #1f51ff;
    color: #ece6db;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}
.project-card .button:hover {
    background-color: transparent;
    border: 2px solid #1f51ff;
    cursor: pointer;
}

/* Fotter section  */
footer{
	position: relative;
	width: 100%;
	height: 400px;
	background: #101010;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
footer p:nth-child(1){
	font-size: 30px;
	color: #ece6db;
	margin-bottom: 20px;
	font-weight: bold;
}
footer p:nth-child(2){
	color: #ece6db;
	font-size: 17px;
	width: 500px;
	text-align: center;
	line-height: 26px;
}

/* social media links section  */
.social{
	display: flex;
}
.social a{
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  #1f51ff;
	border-radius: 50%;
	margin: 22px 10px;
	color: #ece6db;
	text-decoration: none;
	font-size: 20px;
}
.social a:hover{
	transform: scale(1.3);
	transition: .3s;
}
.end{
	position: absolute;
	color:#1f51ff;
	bottom: 35px;
	font-size: 14px; 
}
