    .bottom-10{
        bottom: 20px;
    }
    
    .sm\:grid-cols-3 {
        @media (width >= 640px) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    
    @media (width < 640px) {
        .bottom-10{
            bottom: 120px;
        } 
    }
    
    .min-w-\[100px\]{
        min-width: 100px;
    }
    .min-w-\[140px\]{
        min-width: 140px;
    }
    
    .min-w-\[200px\]{
        min-width: 200px;
    }
    .max-w-\[200px\]{
        max-width: 200px;
    }
    
    .max-w-\[500px\]{
        max-width: 500px;
    }