@import url('https://fonts.googleapis.com/css?family=Poiret+One');
@import url('https://fonts.googleapis.com/css?family=Julius+Sans+One');
@import url('https://fonts.googleapis.com/css?family=Scope+One');

html {
 height: 100%; 
 width: 100%;
}

body {
 background-color: #7f6930; 
 height: 100%;
 width: 100%;
 margin: 0;
 font-size: 16px;
}

.wrapper {
 background-color: #e4e4e4;
 width: 80%;
 margin: auto;
 box-shadow: 0 0 40px rgba(0,0,0,.3);
}

.header {
 width: 100%;
 background-color: #222b2a;
 display: block;
 font-size: 700%;
 color: #dd3d25;
 text-align: center;
 font-family: 'Poiret One', cursive;
}

.nav {
 width: 100%;
}

ul {
 list-style-type: none; 
 margin: 0;
 padding: 0;
 background-color: blue;
}

li {
 float: left;
 width: 25%;
}

li a {
 display: block; 
 text-decoration: none;
 background-color: #2b2223;
 padding: 5px 0 5px 0;
 font-size: 170%;
 text-align: center;
 text-transform: uppercase;
 color: #d4b15d;
 font-family: 'Julius Sans One', sans-serif;
 -webkit-transition: all .5s ease-in-out;
 -moz-transition: all .5s ease-in-out;
 -o-transition: all .5s ease-in-out;
 transition: all .5s ease-in-out;
}

li a:hover {
 background-color: #695937; 
 color: #e4e4e4;
}

.content {
  width: 90%;
  margin: auto;
  font-family: 'Scope One', serif;
  color: #222b2a;
  font-size: 110%;
  padding: 10px;
}

.guide {
 width: 100%;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
}

.guide-section {
 flex: 25%;
 max-width: 25%;
 background-color: #f1f1f1;
 margin: 10px;
 padding: 0 10px 10px 10px;
 -webkit-transition: background-color .5s ease-in-out;
 -moz-transition: background-color .5s ease-in-out;
 -o-transition: background-color .5s ease-in-out;
 transition: background-color .5s ease-in-out;
}

.guide-icon {
 width: 100%;
 background-size: 100%;
}

.guide-title {
 text-align: center; 
 font-size: 125%;
}

.guide-icon img {
 width: 100%; 
 display: block;
 -webkit-transition: opacity .5s ease-in-out;
 -moz-transition: opacity .5s ease-in-out;
 -o-transition: opacity .5s ease-in-out;
 transition: opacity .5s ease-in-out;
}

.guide-icon img:hover {
 opacity: 0; 
}

.guide-section:hover {
 background-color: #695937; 
 color: #e4e4e4;
}

.image {
  width: 100%;
}

.caption {
 background-color: #f1f1f1; 
 padding: 10px;
 display: block;
}

p {
 color: #2b2223;
}

.line {
 height: 2px;
 display: block;
 width: 100%;
 margin: auto;
 margin-top: 10px;
 margin-bottom: 10px;
 background-image: linear-gradient(to right , #e4e4e4 2%, #7f6930 50%, #e4e4e4 98%);
}

.menu-button {
 background-color: #2b2223;
 padding: 10px;
 text-align: center;
 color: #d4b15d;
 border: none;
 text-decoration: none;
 bottom: 0;
 right: 0;
 position: fixed;
 display: block;
 width: 4%;
 -webkit-transition: width 1s ease-in-out;
 -moz-transition: width 1s ease-in-out;
 -o-transition: width 1s ease-in-out;
 transition: width 1s ease-in-out;
}

.menu-button a {
 text-decoration: none;
 color: #d4b15d;
 display: block;
 font-family: 'Scope One', serif;
 font-size: 150%;
}

.menu-button-link:before {
 content: "▲"; 
}

.menu-button:hover {
 width: 30%; 
}

.menu-button:hover .menu-content {
 display: block; 
}

.menu-button:hover .menu-button-link:before {
 content: "Jump To"; 
}

.menu-content {
 display: none;
 position: absolute;
 bottom: 100%;
 right: 0px;
 z-index: 1;
 width: 100%;
}

.menu-content a {
 display: block; 
 width: 100%;
 text-align: center;
 text-decoration: none;
 font-size: 150%;
 padding: 5px;
 color: #d4b15d;
 background-color: rgba(43,34,35,.7);
}

.menu-content a:hover {
 color: #e4e4e4; 
 background-color: rgba(105, 89, 55, 0.7); 
}

@media screen and (max-width: 3800px) {
 body {
   font-size: 22px;
 }
}

@media screen and (max-width: 2600px) {
 body {
  font-size: 20px;
 }
}

@media screen and (max-width: 2000px) {
 body {
  font-size: 18px; 
 }
}

@media screen and (max-width: 1400px) {
 body {
  font-size: 16px; 
 }
}

@media screen and (max-width: 950px) {
  body {
   font-size: 14px; 
  }
}

@media screen and (max-width: 600px) {
  body {
   font-size: 12px; 
  }
}
