Can someone help me with my CSS code issues? I'm having trouble on the first and last lines. Total newbie here :)
Error Messages: at-rule or selector expected (ln 1, Col 1) at-rule or selector expected (ln 51, Col 1)
\<style\>
p {
font-family: Arial;
margin-top: 0;
margin-bottom: 0;
}
.video-title {
font-weight: bold;
font-size: 18px;
width: 280px;
line-height: 24px;
margin-bottom: 5;
}
.video-stats {
font-size: 14px;
color: rgb(96, 96, 96);
margin-bottom: 20px;
}
.video-author {
font-size: 14px;
color: rgb(96, 96, 96);
margin-bottom: 20;
}
.video-description {
font-size: 14px;
color: rgb(96, 96, 96);
width: 280px;
line-height: 22px;
margin-bottom: 100px;
}
.apple-text {
margin-bottom: 50px;
font-size: 14px;
background-color: rgb(227, 65, 64);
color: white;
text-align: center;
padding: 20px;
}
.shop-now:hover {
text-decoration: underline;
cursor: pointer;
}
\</style\>
After looking through my code multiple times, I still can't figure out what's causing the errors on lines 1 and 51. Any ideas?