* {
  box-sizing: border-box;
}
/* Setup web area */
body {
    background-color: darkgray;
    border-color: darkgray; 
    border-style: solid;    
    width: 960px;
    margin: 0 auto;
}

div#logo {
    
    padding: 10px 100px 10px 10px;
    
}

/* Set the headings h1, h2, h3 */

h1 {
    color: #000000;
    line-height: 1.0;
    text-align: center;
    font-family: Verdana,sans-serif;
    font-size: 30px;
}

h2 {
    color: #000000;
    line-height: 1.0;
    text-align: center;
    font-family: Verdana,sans-serif;
    font-size: 24px;
}

h3 {
    color: #993366;
    line-height: 1.0;
    text-align: center;
    font-family: Verdana,sans-serif;
    font-size: 20px;  
 }

/* Setting for the header section */

header {
    padding: 10px;
    color: black;
    font-family: Verdana,sans-serif;
    float: right;
    position: relative;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

/* Settings for the menu */

nav {
	width: 100%;
    background-color: #936;
	height: 40px;
    align-content: center; 
    padding: 10px 100px 10px 100px;
}

.menu {
    color: #ffffff;
    font-family: Verdana,sans-serif;  
    font-weight: bold; 
    text-decoration: none;
    padding-right: 35px;  
    font-size: 12px;  
    position: relative;  
    float: inherit;  
}

/* Hightlights the current page */

.menu_active {
    color: #ffffff;
    font-family: Verdana,sans-serif;   
    font-weight: bold; 
    text-decoration: underline;
    padding-right: 35px;  
    font-size: 12px;  
    position: relative; 
    float: inherit;  
}

/* Setting for the body of the page */

div#content {
    margin: 5px;
    padding: 5px;
    min-height: 550px;  
}

/* Setting for the left-hand column */

div#leftColumn {
    margin: 5px;
    width:50%;
    float: left;
    position: relative;
    color:#000000;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    padding: 10px 10px 10px 10px;
    background-color: floralwhite;
    border: 2px solid;
    padding: 10px;
    box-shadow: 5px 10px #888888;
    
   }

/* Setting for the right-hand column */

div#rightColumn {
    float:right;
    width:35%;
    margin-top: 5px;
    margin-right: 90px;  
    position: relative;
    color:#000000;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    
    
}

/* Setting for the footer section */

footer {
    padding: 3px;
    color: #ffffff;
    background-color: #936;
    font-size: 8pt;
    font-family: Verdana,sans-serif;
}

