Hello, my code is working just fine and I am able to play the game successfully. The only problem I am facing is that the doors are not centering when I am telling them to, they stay stuck to the left.
HTML:
<div id="door-row">
<img id="door1" class="door-frame" src = "https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg" >
<img id="door2" class="door-frame" src = "https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg" >
<img id="door3" class="door-frame" src = "https://s3.amazonaws.com/codecademy-content/projects/chore-door/images/closed_door.svg" >
</div>
CSS
.door-frame {
cursor: pointer;
padding: 10px;
text-align: center;
}