I can’t seem to figure out how to make the text align like in the example shown on the assessment page… and I can’t figure out how to make the box shadows look correct.
Hello @cindoor, nice job on your css! The box shadows look good, I think that maybe you just can’t fully appreciate the light on top because the color you chose for your background is already quite bright. You should maybe try darker color to see how it looks. For the vertical alignment of the text, what I personally came up with, is the following:
Don’t set a fixed height.
Set a padding for the top and the bottom instead.
The css would then be something along the lines of:
p {
width: 200px;
padding: 1em 0;
text-align: center;
/* the rest of your css here ... */
}