@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #6366F1;
    --accent-color: #3f83f8;
    --text-color: #333333;
    --link-color: #2563eb;
    --background-color: #ffffff;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

body {
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.1rem;
}

.Brands-image {
    max-width: 1000px; /* Restrict the container width */
    margin: 0 auto; /* Center the container */
    padding: 1rem; /* Add spacing around the image */
    text-align: center; /* Center the content inside the container */
}

.Brands-image img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Preserve the aspect ratio */
    object-fit: contain; /* Ensure the entire image fits within the container */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover animation */
}

.Brands-image img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhance the shadow on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .Brands-image {
        padding: 0.5rem; /* Reduce padding for smaller screens */
    }

    .Brands-image img {
        border-radius: 4px; /* Smaller rounded corners on smaller screens */
        object-fit: cover; /* Change fit behavior for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .Brands-image img {
        border-radius: 2px; /* Even smaller rounded corners for very small screens */
        object-fit: cover; /* Prioritize fitting within limited space */
    }
}