<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://codecademy.com/courses/web-beginner-en-jNuXw/0/7?curriculum_id=50579fb998b470000202dc8b
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Oops, try again. Did you remember to give your #best_friend a border of color #00C957?
/Add your CSS below!/
div {
display: inline-block;
margin-left: 5px;
height: 100px;
width: 100px;
border: 2px solid black;
border-radius: 100%;
}
.friend {
border: 2px dashed #008000;
}
.family {
border: 2px dashed #0000FF;
}
.enemy {
border: 2px dashed #FF0000;
}
best_friend {border: 4px solid #00C957}
archnemesis {border: 4px solid #cc0000}
<do not remove the three backticks above>