*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
}

body{
background:#111;
color:white;
}



.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:black;
}

.logo{
font-size:24px;
font-weight:bold;
color:rgb(255, 255, 255);
}

.logo span{
color:#9500ff;
}

.navbar a{
margin-left:20px;
color:white;
font-size:18px;
}

.navbar a:hover{
color:#9500ff;
}



.home{
display:flex;
justify-content:space-between;
align-items:center;
padding:100px 10%;
}

.home-content{
max-width:500px;
}

.home h1{
font-size:45px;
margin:10px 0;
}

.home h2{
color:#9500ff;
margin-bottom:10px;
}

.home p{
line-height:1.6;
}



.home-img img{
width:200px;
height:240px;
object-fit:cover;
border-radius:10px;
border:4px solid #9500ff;
}



.social-icons{
margin-top:20px;
}

.social-icons a{
font-size:25px;
margin-right:15px;
color:white;
}

.social-icons a:hover{
color:#9500ff;
}



.education{
padding:80px 10%;
background:#1a1a1a;
}



.projects{
padding:80px 10%;
}

.project-container{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:20px;
}

.project-box{
background:#1a1a1a;
padding:20px;
width:250px;
border-radius:5px;
}



.contact{
padding:80px 10%;
background:#1a1a1a;
}

form{
display:flex;
flex-direction:column;
max-width:400px;
}

form input,
form textarea{
margin:10px 0;
padding:10px;
border:none;
}

button{
padding:10px;
background:#ff0033;
color:white;
border:none;
}



footer{
text-align:center;
padding:20px;
background:black;
}