Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @lantiguav

    Posted

    Nice solution! I would recommend avoiding the use of pixels for font sizes because they override the user's text size settings in the browser. Instead, I suggest using REM.

    On a separate note, it looks like you're missing a box shadow on .card-container:

    .card-container {
        ... your styles
        box-shadow: 0px 25px 25px 0px #0000000C;
    }
    
    0