@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Bitter&family=Island+Moments&family=Rubik+Marker+Hatch&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Courgette&family=Kaushan+Script&family=Merriweather:wght@300&family=Roboto+Slab:wght@300&family=Rubik:wght@300&family=Staatliches&display=swap');

:root{
    --primary-color: #00CEF3;
    --secondary-color: #FFC416;
    --third-color: #FA0107;
    --font-main:"Rubik Marker Hatch";
    --font-second:"Akaya Telivigala"
}
body{
    font-family: var(--font-second);
}
.partner-header {
    position: relative;
    background-image: url('../img/partner.png'); /* Replace 'path/to/your/image.jpg' with the actual path to your background image */
    background-size: cover;
    background-position: center;
    color: #fff; /* Set the text color to white or any other contrasting color */
    padding: 100px 0; /* Adjust the padding as needed */
    font-family: var(--font-second);
}

.partner-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(84, 188, 223, 0.3); /* Adjust the overlay color and transparency */
}
.partner-header h2{
    font-family: var(--font-main);
    font-size: 4rem;
}
.partner-header h3{
    color: white;
    font-size: 2rem;
}
@media (max-width: 776px) {
    .partner-header h2 {
        font-family: var(--font-main);
        font-size: 1.5rem;
    }

    .partner-header h3 {
        color: white;
        font-size: 1rem;
    }
}