.github-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}
a{
    color:#fff;
}
.github-icon:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.7);
}

.github-icon i {
    color: white;
    font-size: 22px;
}
