*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#0f172a;
color:rgb(157, 161, 231);
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
padding:20px 10%;
background:#020617;
}

.logo{
color:#38bdf8;
}

.nav-links{
display:flex;
list-style:none;
}

.nav-links li{
margin-left:20px;
}

.nav-links a{
text-decoration:none;
color:white;
}


/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:50px 10%;
}


.hero-text h1{
font-size:50px;
}

.hero-text span{
color:#38bdf8;
}

.hero-img img{
width:300px;
height:300px;
object-fit:cover;
border-radius:50%;
border:4px solid #38bdf8;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:#38bdf8;
color:black;
text-decoration:none;
border-radius:5px;
}

.btn2{
background:#6366f1;
padding:10px 20px;
color:white;
text-decoration:none;
border-radius:5px;
margin-left:10px;
}

/* SECTIONS */

section{
padding:80px 10%;
}

/* PROJECTS */

.project-container{
display:flex;
gap:20px;
}

.project-card{
background:#1e293b;
padding:20px;
border-radius:10px;
width:300px;
}

/* SKILLS */

.skills-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.skill{
background:#1e293b;
padding:20px;
text-align:center;
border-radius:10px;
}

/* CONTACT */

form{
display:flex;
flex-direction:column;
max-width:400px;
}

input, textarea{
margin-bottom:15px;
padding:10px;
border:none;
border-radius:5px;
}

button{
background:#38bdf8;
border:none;
padding:10px;
cursor:pointer;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#020617;
}