/* stylesheet.css */
/* Stylesheet for Urú Recipes */


/* Style rule for the body element */
body{
   background-color: #e1e0e0;
  }

/* Style rule for the Wrapper div */
#wrapper { 
   background-color: #e1e0e0;
   font-family: arial, helvetica, sans-serif;
  }

/* Style rule for the Logo div */
#logo {
   color: #888080
   font-family: helvetica neue, arial, sans-serif; 
  }

/* Style rule for the Nav div */
#nav { 
   background-color: #b0b0b0;
   text-align: center;
  }

/* Style rule for the Main div */
#main{
   max-width: 900px;
   margin:0 auto;
   background-color: #e1e0e0;
   font-family: Arial, Helvetica, Sans-Serif;
   text-align: justify;
  }

/* Style rule for the Recipe div */
#recipe{
   max-width: 750px;
   margin:16px auto;
   background-color:white;
   font-family: Arial, Helvetica, Sans-Serif;
   border: solid 8px 777;
   box-shadow: 10px 10px 8px 14px gray;
   border-radius:5px;
  }

/* Style rule for the Original Directions div */
#original { 
   font: 12pt georgia, times, serif; 
   text-align: justify; 
   margin:16px;
  }

/* Style rule for the AK Notes div */
#aknotes { 
   font: 12pt Helvetica Neue, Arial, Sans-Serif; 
   text-align: justify; 
   margin:16px;
  }


