.sponsors-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(21, 96, 18, 0.85),
            rgba(21, 96, 18, 0.85)),
        url("./assets/contact-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.sponsors-container {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}

.welcome-h2.sponsors {
    color: var(--gold)!important;
}

.sponsors-para {
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--white);
}

@media (max-width: 768px) {
 .sponsors-container {
    width: 80%;
 }   
}