*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#eeeeee;
    color:rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 60px;
    background:#eeeeee;
    position: sticky;
    top:0;
}

header h1{
    color:black;
}

nav a{
    color:rgb(0, 0, 0);
    text-decoration: none;
    margin-left:20px;
    transition:0.3s;
}

nav a:hover{
    color:rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

.hero{
    text-align: center;
    padding:70px 20px;
}

.hero img{
    width:180px;
    height:180px;
    border-radius: 50%;
    border:5px solid rgb(2, 221, 250);
    display:block;
    margin:0 auto 20px;
}

.hero h2{
    margin-top:20px;
    font-size:40px;
}

.hero p{
    margin-top:10px;
    font-size:18px;
}

.card{
    width: 85%;
    margin:40px auto;
    background:#979797;
    padding:30px;
    border-radius:15px;
}

.card h2{
    color:black;
    margin-bottom:15px;
}

.projects{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.project{
    background:#979797;
    padding:20px;
    border-radius:15px;
    flex:1;
    min-width:220px;
    transition:0.3s;
}

.project:hover{
    transform:translateY(-5px);
}

footer{
    text-align:center;
    padding:30px;
    background:#979797;
    margin-top:40px;
}

footer p{
    color: black;
}