body{
    background:#0d1117;
    color:white;
    line-height:1.6;
    min-height:100vh;
    width: 90%;
    margin:0 auto;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}
a {
    color: #58a6ff;
    border: #0d1117;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10px;
    background:#161b22;
    position:sticky;
    top:0;
}
.logo{
    color:#58a6ff;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}
.nav-links a{
    color:white;
    text-decoration:none;
}
.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}
.hero h1{
    font-size:3rem;
}
.hero h2{
    color:#58a6ff;
    margin:15px 0;
}
.hero p{
    max-width:700px;
}
.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    background:#58a6ff;
    color:white;
    text-decoration:none;
    border-radius:8px;
}
.section{
    padding:80px 10px;
    text-align:center;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}
.card{
    background:#161b22;
    padding:25px;
    border-radius:12px;
}
.skills{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:25px;
}
.skills span{
    background:#161b22;
    padding:10px 20px;
    border-radius:50px;
}
.socials{
    margin-top:20px;
}
.socials a{
    color:white;
    font-size:2rem;
    margin:0 15px;
}
footer{
    text-align:center;
    padding:20px;
    background:#161b22;
}
.menu-btn{
    display:none;
}
@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .menu-btn{
        display:block;
        font-size:1.5rem;
    }

    .hero h1{
        font-size:2rem;
    }
}