* {box-sizing: border-box;}
html { 
  background: #252B13; /* black olive */
  background-image: url(img/spratt2.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  scroll-behavior: smooth;
}

/* ---- BODY & FOOTER ---- */
body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #DFE7C5; /* tea green */
  line-height: 1.25em;
  margin: 0;
  text-align: center;
}

a {
  border-radius: 6px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: none;
}

a:link, a:visited {
  background-color: #DAA520; /* goldenrod */
  box-shadow: 2px 2px 2px #0C0C08; /* smoky black */
  color: #0C0C08; /* smoky black */
  }

a:focus, a:hover {
  background-color: #0C0C08; /* smoky black */
  color: #daa520; /* goldenrod */
}

div.main {
  background-color: #252B13; /* black olive */
  width: 95%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: left !important;
  border: none;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #0C0C08; /* smoky black */
}

@media screen and (min-width: 600px) {
  div.main {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  div.main {
    font-size: 95%;
  }
}

div.footer {
  box-shadow: none;
  color: #555c3e; /* ebony green */
}

h1, h2, h3, h4 {
  text-shadow: 2px 2px 5px black;
}

h1 { 
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 3px;
  color: #DAA520; /* goldenrod */
}

h2 { 
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 2px;
  font-style: italic;
  color: #848D68; /* moss green */
}

h3 {
  font-size: 1.75em;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #848D68; /* moss green */  
}

h4 {
  font-size: 1.5em;
  font-weight: 300;
  color: #DAA520; /* goldenrod */  
}

hr.line {
  border: 1px solid #555c3e; /* ebony green */
  opacity: 0.9;
}

img {
  float: left;
  border: none;
  border-radius: 6px;
  box-shadow: 2px 2px 2px #0C0C08; /* smoky black */
}

blockquote { 
	background-color: #555c3E; /* ebony green */
  border-radius: 6px;
  color: #0C0C08; /* smoky black */ 
  display: block;
  font-style: italic;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 40px;
  margin-right: 40px;
  padding: 0.5em 1em;
}

/* ---- SCROLL TO TOP ---- */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none;
  outline: none;
  background-color: #DAA520; /* goldenrod */ 
  color: #0C0C08; /* smoky black */
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}
#myBtn:hover, #myBtn:focus {
  background-color: #0C0C08; /* smoky black */
  color: #DAA520; /* goldenrod */
  outline: #0C0C08; /* smoky black */
}