By manipulating different selectors and properties, you can make interesting shapes. One of the easier ones to try is a crescent moon shape. For this challenge you need to work with thebox-shadowproperty that sets the shadow of an element, along with theborder-radiusproperty that controls the roundness of the element's corners.
You will create a round, transparent object with a crisp shadow that is slightly offset to the side - the shadow is actually going to be the moon shape you see.
In order to create a round object, theborder-radiusproperty should be set to a value of 50%.
You may recall from an earlier challenge that thebox-shadowproperty takes values foroffset-x,offset-y,blur-radius,spread-radiusand a color value in that order. Theblur-radiusandspread-radiusvalues are optional.
Manipulate the square element in the editor to create the moon shape. First, change thebackground-colortotransparent, then set theborder-radiusproperty to 50% to make the circular shape. Finally, change thebox-shadowproperty to set theoffset-xto 25px, theoffset-yto 10px,blur-radiusto 0,spread-radiusto 0, and color toblue.