<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.>
<In what way does your code behave incorrectly? Include ALL error messages.>
I keep getting the following error message : Did you add a background-color property of .slogan class in main.scss?
It seems like it should be right from what I was able to find here in the help section but clearly it’s not because it keeps erroring out on me.
```@import url(https://fonts.googleapis.com/css?family=Pacifico);
$translucent-white:
rgba(255,255,255,0.3);
//Add variables here:
h1 {
font-family: Roboto, sans-serif;
text-align: center;
}
.banner {
font-family: ‘Pacifico’, cursive;
height: 400px;
background-image: url(“lemonade.jpg”);
.slogan {
background color: $translucent-white;
position: absolute;
border: 4px solid black;
top: 200px;
left: 25%;
width: 50%;
height: 200px;
text-align: center;
span {
font-size: 24px;
line-height: 200px;
}
}
border : {
top: 4px solid black;
bottom: 4px solid black;
}
}
.container {
text-align: center;
font-family: ‘Pacifico’, cursive;
.icon {
display: inline-block;
margin: 2%;
border: 4px solid black;
font-size: 32px;
}
}
<do not remove the three backticks above>