* {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Archivo Black';



        background-image: url('images/background_2.png');
    
        background-size: cover;
    
        background-position: center;
    
        background-attachment: fixed;
    
        margin: 0;
        padding: 0;
    
    }

@media only screen and (max-width: 768px) {
    body {
        background-image: url('images/background_1.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}
    
@keyframes customBounce {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about-logos {
    animation: customBounce 1.5s infinite;
}
.w-full button:hover .svgg path {
    fill: black;
}