        body {
            margin: 0;
            padding: 0;
            background: white;
            font-family: "Ropa Sans", sans-serif;
            font-weight: 500;
            font-style: normal;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            overflow: hidden;
        }

        .title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            padding-top: 3vh;
        }

        .wrapped {
            display: flex;
            gap: 100px;
            width: 50%;
            margin: auto;
            justify-content: center;
            align-items: center;
        }

        .item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logos {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            overflow: hidden;
        }

        .logos img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .description {
            margin-top: 10px;
            text-align: center;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .wrapped {
                width: 100%;
                flex-direction: column;
                margin-top: auto;
                margin-bottom: auto;
                justify-content: center;
                align-items: center;
            }
            
            .logos {
                width: 100%;
                padding-bottom: 100%;
            }
        }
