Applied Visual Design: Create a Graphic Using CSS

Tell us what’s happening:

Your code so far


<style>
.center
{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  
  background-color: transparent;
  border-radius: 50%;
  box-shadow :25px 0px 0px 10px blue; 
}

</style>
<div class="center"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-graphic-using-css

Pay closer attention to the order of the values you gave the box-shadow property.
The instructions describe something but you are not following them exactly (double check that you put the numbers in the correct order).

Hope this helps.
./H.B.