.nav{
    margin-top:24px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.nav a{
    color:#2E7D32;
    text-decoration:none;
    font-weight:600;
    padding:8px 14px;
    border-radius:999px;
    background:#E8F5E9;
    transition:.2s;
}

.nav a:hover{
    background:#C8E6C9;
}