* {
  box-sizing: border-box;
}
html,
body {
	height: 100%;
	background-color: #84B5B1;
	background-image: url("arches.png");
}
.container{
	background-color: white;
	padding: 10px;
}
header, section{
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}
section{
	margin-bottom: 40vh;
	margin-left: auto;

}
img #gfx{
	width:100%;
	max-width: 600px;
}
h5{
	padding:5px 15%;
	font-size: 1.4em;
}
h3{
	padding: 5px 20%;
	font-size: 2em;
	margin: 0 auto;
	text-align: center;
}
p{
	padding: 0 10%;
	font-size: 1.2em;
}

header{
	font-size: 4em;
	margin: 0 auto;
	display: block;
	color:#C1272D;
	font-family: Franklin Gothic Heavy, San-Serif;
	text-align: center;
}
.country{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	display: block;
}

.portrait{
	margin: 0 auto;
	display: block;
}

.narrative{
	padding: 0 15%;
	font-size: 1.2em;
}

#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; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: grey; /* Set a background color */
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

nav{
	width: 130px;
	padding: 0;
	position: fixed;
	z-index: 1;
	top: 8px;
	left:8px;
	
}

#menu-icon{
	display: hidden;
	width: 40px;
	height: 40px;
	background:black url(menu-icon.png) center;
	
}
a:hover#menu-icon{
	background-color: #555;
	
}

ul{
	list-style: none;
}

li{
	display: block;
	padding-bottom: 10px;
}

a{
	text-decoration: none;
	color: black;
	font-size: 1.2em;
	font-weight: bold;

}
a:hover{
	color: #C1272D;
	text-decoration: underline;
}

@media only screen and (max-width: 1100px){
	#menu-icon{
		display: inline-block;
	}
	nav ul, nav:active ul{
		display: none;
		background: #fff;
		border: 2px solid #444;
		border-radius: 4px;
	}

	nav li{
		width: 100%
		padding: 0;
		margin: 0;
	}
	nav:hover ul{
		display: block;
	}
}




/*
.sidebar {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left:1vw;
  overflow-x: hidden;
  padding-top: 16px;
  display: none;
}

.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color:  black;
  display: block;
}


.sidebar a:hover {
  color: #f1f1f1;
}

@media (min-width: 750px) {
  .active{
     background-color:#eee;
  }
   #sidebar{
    margin: 10px 0;
    display: block;
  }
  .hidden {
    opacity: 1;
    height: auto;
    display: block;
    transition:opacity 0s;
  }
}*/