.nav-buttons {
    display: flex;
    gap: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.second-b{
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.05s ease;
}
.second-b:hover{
    color: aliceblue;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.first-b{
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.05s ease;
}
.first-b:hover{
    transform: translateY(-2px);
    background: linear-gradient(200deg, rgb(128, 112, 173), rgb(33, 28, 94));
    box-shadow: 0 9px 60px rgba(rgb(174, 150, 212), rgb(148, 155, 148), rgb(150, 150, 180), 0.5);
}