Dr. Fania Raczinski
fania.raczinski@uca.ac.uk
  width, height, margin, padding, and border
These can be adjusted using various units:
      div.cyan.first {
        border-radius: 50%;     /* 50% all around */
        border: 4px solid blue;
      }
      div.magenta.second {
        border-radius: 100% 0 0 0; /* border-top-left-radius */
        border: 4px dotted red;
      }
      div.yellow.third {            /* border-bottom-left-radius */
        border-radius: 50% 0 0 50%; /* border-top-left-radius */
        border: 4px ridge orange;   
      }