div.section-projects-outer {
    width: 100%;
    margin: auto;
    background: linear-gradient(
            to bottom right,
            rgba(255,160,0,0.96) 0%,
            rgba(160,0,255,1) 100%
    );
}

div.section-projects-inner {
    width: 800px;
    margin: 0 auto;
    padding: 80px 160px;
    color: #fff;
}

.git-card {
    margin-bottom: 40px;
}

.git-card img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 8px;
    overflow: hidden;
}

.git-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

.git-card a {
    display: block;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.git-card a:hover {
    transform: translateY(-4px);
}

.git-card a:hover h3 {
    text-decoration: underline;
}