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

  • h-octocat 10

    @h-octocat

    Posted

    You are off to the right start, but you need a few small changes. I would start by properly centering the card. I did this by:

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
    

    .card { margin: 0; position: absolute; top: 50%; left: 50%; transform: translateY(-50%) translateX(-50%); }. Hope this helps!

    0