

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo", sans-serif;
  line-height: 1.5;
  color: white;
}

img {
  max-width: 100%;
  display: block;
}

header img {
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  width: 100%;
  background-color: #07210f;
  color: #f7ea77;
}

a {
	color: #f7ea77;
	text-decoration: underline;
}

a:hover {
	color: #FFFFFF;
}

nav > a {
  display: block;
  padding: 1rem 2rem;
  color: #f7ea77;
}
nav > a:hover {
  color: #ffffff;
}

main {
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  min-height: 100vh;
}

main > h1 {
  margin: 0.25rem 0 0.5rem;
}

main > img {
  border-radius: 5px;
}

footer {
  background-color: #07210f;
  color: #f7ea77;
  padding: 1rem;
  text-align: center;
}

div#wrapper {
    margin: 0 auto;
    width: 1000px;
    padding: 0px;
	background-color: #40613D;
	border-style: double;
}

div#wrapper section#content {
    float: left;
    width: 350px; 
    margin-bottom: 8px;
    min-height: 300px; /* demo purpose */
	text-align: left;
}

div#wrapper aside {
    float: right;
    width: 140px;
    margin-top: -40px;
    min-height: 200px; /* demo purpose */
}

div#wrapper footer {
    clear: both;
}

#sideBar {
  width: 200px;
  background: #284526;
  padding: 1rem 1rem;
  font-size: 14px;
}

#sideBar h1, #sideBar h2, #sideBar h3, #sideBar h4 {
	color: #ffffff;
	line-height: 3rem;
}

#page {
  display: flex;
}

blockquote {
	padding:20px;
	background-color: #07210f;
	border-style: dotted;
	border-color: #04170a;
	border-width: 2px;
	font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
	color: #07210f;
}

ul {
	padding: 0.5rem;
}

.thumbnail { 
top:-50px; 
left:-35px; 
display:block; 
z-index:999; 
cursor: pointer; 
-webkit-transition-property: all; 
-webkit-transition-duration: 0.3s; 
-webkit-transition-timing-function: ease; 
} 

.thumbnail:hover {
transform: scale(1.5); 
}


