*{
 box-sizing:border-box;
}


/*body elements*/

html,body{
 margin:0;
 padding:0;
 background-color: #272730;
 color:#999999;
 font-family:'Poppins','Open Sans','Arial',sans-serif;
 font-size:14px;
 }


 /*hyperlink rollover*/

a:link {
    color: #D4CCB0;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #D4CCB0;
    text-decoration: none;
}


/* mouse over link */
a:hover {
    color: white;
    text-decoration: none;
}


/* selected link */
a:active {
    color: red;
    text-decoration: none;
}


/*horizontal rule properties*/

hr {
	background-color: #B2AEA4;
	height: 1px;
	border: none;
	width: 92%;
	margin-top: 40px; 
	margin-bottom: 30px;
}


/*adjust header text values*/

 h1 {color: #B2AEA4;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: lighter;
 }


 /*paragraph properties*/

 p {line-height: 1.75em;
 }


/*margin set to left + 50% containers px width - sets content to centre*/

.container{
 width:1000px;
 float:left;
 position:relative;
 left:50%;
 margin-left:-500px;
 background:#000000;
 padding:0px;
}


/* dropdown */

.topnav {
  overflow: hidden;
  background-color: #3a4678;
}

.topnav a {
  float: left;
  color: #cccccc;
  text-align: center;
  padding: 8px 20px 8px 10px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.topnav a:hover {
  background-color: #b68010;
  color: black;
}

.topnav a.active {
  background-color: #333333;
  color: #cccccc;
}


/* drop down elements */

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 12px;    
    border: none;
    outline: none;
    color: #cccccc;
    padding: 8px 20px 8px 10px;
    background-color: inherit;
    font-family: inherit;
    margin: 0px;
    letter-spacing: 1px
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #8f9131;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* exp grid */

.head { grid-area: header; }
.main { grid-area: main;  }
.aside { grid-area: aside; }
.foot { grid-area: foot; }

.grid-container {
  display: grid;
  grid-template-areas:
    'header header header'
    'main main aside'
    'foot foot foot';
  grid-gap: 0px;
  background-color: #3F1C1F;
  padding: 0px;
}
.grid-container > div {
  background-color: #3F1C1F;
  text-align: center;
  padding: 0px 0;
  font-size: 14px;
}





/* opac hover */

.opac img {
    opacity: 1.0;
    filter: alpha(opacity=50);
}

.opac img:hover {
    opacity: 0.5;
    filter: alpha(opacity=100);
}


/* paragraph styles */

.p1

{
	max-width: 700px;
	padding: 20px;
}

.p2
 {
 	padding: 10px;
 	text-align: left;
 	font-size: 12px;
 	margin-top: 45px;
 }


.shadow

{
    border: 1px solid;
    padding: 0px;
    box-shadow: 5px 5px 20px #000;
}




