Hey all, I can’t complete step 8 of learning SASS. 2 advisers could not find the problem. Anyone else can help me?
```@import url(https://fonts.googleapis.com/css?family=Pacifico);
$standard-border: 4px solid black;
$translucent-white: rgba(255,255,255,0.3);
$icon-square-length: 300px;
h1 {
font-family: Roboto, sans-serif;
text-align: center;
}
.banner {
border {
top: $standard-border;
bottom: $standard-border;
}
.slogan {
background-color: $translucent-white;
font-family: ‘Pacifico’, cursive;
height: 400px;
background-image: url(“lemonade.jpg”);
position: absolute;
border: $standard-border;
top: 200px;
left: 25%;
width: 50%;
height: 200px;
text-align: center;
span {font-size: 24px;
line-height: 200px;}
}
}
.container {
text-align: center;
font-family: ‘Pacifico’, cursive;
.icon {
width: $icon-square-length;
height: $icon-square-length;
display: inline-block;
margin: 2%;
border: $standard-border;
font-size: 32px;}
}
<do not remove the three backticks above>