Create this button

HTML

<!-- do not change the markup -->
<a href="#">
  Checkout
</a>

CSS

/*

Using CSS properties alone, recreate this button. Spend no longer than 10 minutes on it, we don't expect it to be a perfect match. It's open book, feel free to hit Google but be prepared to explain your solution.

http://i.imgur.com/gnZnY.png.

*/
a {
   text-decoration: none; 
   display: inline-block;
   padding: 15px 20px; 
   border: 1px solid #4d4d4d; 
   border-radius: 10px; 
   color: #4d4d4d; 
   font-weight: bold; 
   text-transform: uppercase; 
   box-shadow: 0px 2px 1px #000;  
   background: #E0DED9; 
}