body {
    background-color: #030909; 
    background-image: repeating-linear-gradient(
        0deg, 
        rgba(30, 30, 30, 0.4) 0px, 
        rgba(30, 30, 30, 0.4) 1px, 
        transparent 1px, 
        transparent 40px
    ), 
    repeating-linear-gradient(
        90deg, 
        rgba(30, 30, 30, 0.4) 0px, 
        rgba(30, 30, 30, 0.4) 1px, 
        transparent 1px, 
        transparent 40px
    ); 
    color: #e3f5f6;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    color: #030909;
}
.scrolling-logos {
display: flex;
animation: infinite-scroll 20s linear infinite;
width: max-content;
}

.scrolling-logos img {
    height: 70px;
    opacity: 0.8;
    margin: 0 15px;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.overflow-hidden {
    overflow: hidden;
}