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

  • air091 140

    @air091

    Submitted

    What are you most proud of, and what would you do differently next time?

    The most I am proud of here is that I complete the challenge. I would do nothing different next time.

    What challenges did you encounter, and how did you overcome them?

    My challenges I encountered is lazyness, because of a problem when centering the container. I 'd overcome it with by determination of completing the challenge.

    Ayako 40

    @Ayako-Yokoe

    Posted

    This looks perfect. I like it!

    0
  • Ayako 40

    @Ayako-Yokoe

    Posted

    This looks great. You might want to consider adding bold formatting to the place/address.

    0
  • Ayako 40

    @Ayako-Yokoe

    Posted

    Sizes are perfect. You can check the color either in the Figma file or using the browser's inspect tool.

    0
  • Ayako 40

    @Ayako-Yokoe

    Posted

    This is great. You can center the card using either of these methods:

    Using Flexbox in the body: body { display: flex; justify-content: center; align-items: center; /* other styles */ }

    Or, apply positioning styles directly to .card: .card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* other styles */ }

    0