/* *******************************************************************************************
* Description:       Resume -  Style sheet for Week 3 Assignment 2 - HTML Resume
*          Author:       D-W, Andrew 
*     Filename:       resume.css
*            Date:        Saturday, November 18, 2023
*    
********************************************************************************************* */

body {
font-family:  Verdana,  Arial, Helvetica, sans-serif;
font-size: 95%;
width: 90%;
background-color:  white;  
margin: 15px auto;
padding: 10px  1.5em; 
border: 1px  solid black;
border-radius: 25px;
box-shadow:  5px 5px 0 0;
}


/* the styles for the header */

header {

border-bottom: 2px solid  SkyBlue; 

}

header h1 {
border-top:  2px  solid   SkyBlue;
font-size: 150%;
text-align: center;

padding-top:   .2em;
}


header h4 {
font-size: 90%;
color: black;
margin-bottom:  .25em;
text-align: center;
padding-bottom:  .5em;
 }

/*  The main content styles */


main h2{
color:  blue;
text-shadow: 1px 3px 0 black;
}


/* The footer Styles */

footer {
margin-top: 2em; 	
border-top:  2px  solid   SkyBlue;
padding-top:  .7e m; 
}

footer p {
font-size: 80%;
color:  blue;
text-align: right; 
}
      