body
{
    margin:0;
    font-family: Arial;
    background:#0f0f0f;
    color:white;
}

nav
{
    display:flex;
    justify-content:space-between;
    padding:20px 40px;
    background:#111;
}

nav ul
{
    display:flex;
    list-style:none;
    gap:20px;
}

nav a
{
    text-decoration:none;
    color:white;
}

.hero
{
    height:80vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.hero h2
{
    font-size:50px;
}

button
{
    padding:12px 25px;
    background:#c9a227;
    border:none;
    color:black;
    cursor:pointer;
}

section
{
    padding:80px 10%;
}

.skills-grid
{
    display:grid;
    grid-template-columns:repeat(auto-fit,150px);
    gap:20px;
}

.skill
{
    background:#1a1a1a;
    padding:20px;
    text-align:center;
    border-radius:10px;
}

.projects
{
    display:grid;
    grid-template-columns:repeat(auto-fit,250px);
    gap:30px;
}

.card
{
    background:#1a1a1a;
    padding:20px;
    border-radius:10px;
}

footer
{
    text-align:center;
    padding:20px;
    background:#111;
}
