Hi @selianordev, thanks for submitting your code! This is looking mostly fine; there are just a few minor points that I wanted to talk about:
- The alignment of the address is not just right, and the color is the not the same as the one we used. You used the following rule:
.card article p{
color: #fff;
padding-left:1em;
padding-top:2em;
}
But it should more like this:
.card article p{
color: rgba(255,255,255,0.8);
padding:1em;
}
The color is not a major problem, but the alignment is slightly more serious.
- The text in the footer is slightly different to what we had in our version. Again, this is not a big problem. Looking at your code, it is down to an unneeded
font-weight: 500;
declaration in the following rule:
.card footer p{
font-size: 1.5em;
font-weight: 500;
line-height: 2;
}
- You gave your article element a slightly different color to ours:
.card article{
height: 12em;
background-color: rgba(0,0,0,0.2);
}
We used rgba(0,0,0,0.25)
. But again, this is only a very minor point.
Well done on a good bit of work.