.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #1a202c;
}

.bg-white {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.bg-white:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.p-4 {
    padding: 1rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.text-blue-500 {
    color: #3490dc;
}

.font-semibold {
    font-weight: 600;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .bg-white:hover .logo {
        transform: scale(1);
    }
}
