<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/make-a-website/lessons/closer-look-css/exercises/font-size?action=resume
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I have set the font-size in the p selector to 2rem but the system does not recognize it. It keeps telling me I have not set the p selector font-size to 2rem. I re-read the instructions and checked for errors such as typing, spacing, and closing of brackets. I do not understand what I am doing wrong or if this is a glitch in the code academy lesson. The code I pasted is how it is in the code editor. I have tried bringing the bracket up a line and I have also tried moving the font-size code down a line, but still remaining between the brackets.
body {
height: 100%;
margin: 0;
text-align: center;
width: 100%;
}
h1 {
font-size: 32px;font-family: Palatino, 'Palatino Linotype', serif;color: rgb(218,190,206);
}
h2 {
font-size: 56px;
}
.hero {
padding: 250px 0;
margin: 30px;font-family: 'Trebuchet MS', Helvetica, sans-serif;
}
p { font-size: 2rem;
}
.hero a {
color: #00FFAA;
font-size: 1.25em;
text-decoration: none;
}