*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    line-height:1.6;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    background:#222;
}

.logo{
    color:white;
    font-size:24px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:url('background.jpg') center/cover;
    color:white;
}

.profile{
    width:180px;
    height:180px;
    border-radius:50%;
    border:4px solid white;
}

.hero h1{
    margin-top:15px;
    font-size:50px;
}

.btn{
    display:inline-block;
    margin:10px;
    padding:10px 25px;
    background:#007bff;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

section{
    padding:60px;
}

h2{
    text-align:center;
    margin-bottom:30px;
}

.about-container{
    display:flex;
    gap:40px;
    align-items:center;
}

.about-container img{
    width:350px;
    border-radius:10px;
}

.card{
    background:#f4f4f4;
    padding:20px;
    margin:15px 0;
    border-radius:10px;
}

.skills{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.skills span{
    background:#007bff;
    color:white;
    padding:10px 20px;
    border-radius:20px;
}

footer{
    text-align:center;
    padding:20px;
    background:#222;
    color:white;
}