/* Global styles for the document */
body {
    background-size: cover;
	background-image: url("wall.png");
    background-repeat: no-repeat;
	background-attachment: fixed;
    font-family: Verdana, Arial, sans-serif;
}

/* Styles for the header element */
.site-header {
   display: flex;
  justify-content: space-between; 
  align-items: center;           
  padding: 15px 20px;
  background-color: light green;
  border-bottom: 2px solid #ccc;
}

.header-img {
  width: 80px;        
  height: auto;
  border-radius: 8px; /* optional */
}

/* Styles for the h1 element */
h1 {
	text-align: center;
	padding-top: 1em;
}

/* Styles for the link element */
.links a.active{
    background-color: white;
    color: blue;
    border-color: darkblue;
	display: flex;
	flex-direction: column;
}

/* Styles for the nav element */
.sidebar {
    position: fixed;
	top: 0px;
	left: 0px;
	height: 10vh;
	width: 200px;
	background-color: none;
	border-right: 2px solid #ccc;
	
	display: flex;
	flex-direction: column;
}

.sidebar a {
	display: block;
	padding: 12px 15px;
	background-color: red;
	border: 2px solid black;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	
}

/* nav design for extra flare*/
.sidebar a:hover {
	background-color: green;
	border-color: #999;
}
	

/* Styles for the h2 element */
h2 {
    color: #000000;
    font-family: Georgia, serif;
}
/* Styles for the h3 element */
h3 {
	color: #000000;
    font-family: Calibri, serif;
}

/* Styles for the dt element */
dt {
    color: #002171;
    font-weight: bold;
}

/* Styles for the footer element */
footer {
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
	padding: 1em;
}

/* Style rule for the wrapper ID */
#wrapper {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
	min-width: 960px;
	max-width: 2040px;
	background-color: white;
	box-shadow: 3px 3px 3px #3333333;
}

/* style for a wrapped image */
.right-image {
	position: flex;
    top: 0;          
    right: 0;       
    height: 50%;  
    width: 50%;  
}
hr{
	border: none;
	height: 3px;
	background-color:96F97B;
	width: 70%;
	border-radius: 5px;
	margin: 40px auto;
}