@ydctnr Posted 8 months ago
your solution doesn't show up. But in your css code :
h4 {
margin-top: 0%;
font-family: "Outfit", sans-serif;
padding: 30px;
font-size: 11px;
font-weight: 200;
color: Light gray: hsl(212, 45%, 89%); ===>> gives a warning.
position: absolute;
padding-top: 20%;
}
you can use:
color: lightgray; or
color: hsl(212, 45%, 89%);
h2 {
margin-top: 0%;
font-size: 100%;
font-family: "Outfit", sans-serif;
font-weight: 380px;
padding: 30px;
padding-top: 0%;
position: absolute;
text-align: center;
color: Dark blue: hsl(218, 44%, 22%); ====>> gives a warning
}
good job :)
0
This comment has received 1 reply Show