Step-by-step explanation:
On line 10 you wrote:
{
float: right;
width: 200px;
margin: 10px;
border-radius: 20px;
}
This is the origin of your error. You have not declared any selector for the properties. Remember CSS rules take the following form:
selector {
property: value;
}