body{
	background-color: #141414;
	color: white;
	font-family: "Georgia";
}
h1{
	text-align:center;
	font-size: clamp(45px, 7vw, 8vw);
	padding-top: clamp(60px, 5vw, 6vw);
	padding-bottom: clamp(15px, 2vw, 3vw);
	text-decoration-line: underline;
	text-decoration-color: #65350f;
}
h2{
	text-align: center;
	font-size: clamp(20px, 4vw, 5vw);
	margin-top: clamp(50px, 8vw, 8vw);
	margin-bottom: clamp(20px, 2vw, 3vw);
}
p{
	margin-top: clamp(50px, 4vw, 5vw);
	margin-bottom: clamp(15px, 1.5vw, 2vw);
	text-align: center;
	font-size: clamp(14px, 1vw, 2vw);
}
#imgW {display:block;}
#imgL {display:none}
@media all and (max-width: 610px) {
    #imgW {display: none;}
    #imgL {display: block;}
}
.image{
	width:100%;
	margin-bottom: clamp(50px, 8vw, 8vw);
}
hr.solid{
	border-bottom-width: clamp(5px, 0.5vw, 1vw);
	border-color: #65350f;
}
iframe{
	display: block;
	margin: 0 auto;
	margin-bottom: clamp(50px, 8vw, 8vw);
	border-style: solid;
	border-color: #8b4513;
	border-width: clamp(5px, 0.5vw, 1vw);
	border-style: outset;
	width: 90vw;
	height: calc(90vw/1.77);
}
.container {
  position: relative;
  text-align: center;
  margin-top: clamp(60px, 8vw, 8vw);
  margin-bottom: clamp(60px, 8vw, 8vw);
}
.container a{
	  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	color: white;
	background-color: rgba(255,255,255,0.2);
	font-size: clamp(35px, 7vw, 8vw);
	padding: 0.5em;
	border-width: 0.1em;
	border-style: solid;
	border-color: white;
}
.container a:hover{
	color: black;
	background-color: white;
	transition: 0.6s;
}
 @media screen and (max-width: 500px) {
	.container a:hover{
		transition: 0s;
	}
}
*{
  margin: 0;
  padding: 0;
}
nav{
	position: fixed;
	width: 100%;
	height: clamp(50px, 3vw, 4vw);
	background-color: #65350f;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	 z-index: 8;
}
.links-container{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav a{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: clamp(25px, 1vw, 2vw);
  color: white;
}
nav p{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: clamp(25px, 1vw, 2vw);
  color: white;
  margin: auto;
}
nav a:hover{
  background-color: #A67B5B;
}
nav .first{
	margin-left: auto;
}
#current{
	background-color: #A67B5B;
	text-decoration-line: underline;
}
nav svg{
  fill: white;
}
#sidebar-active{
  display: none;
}
.open-sidebar-button, .close-sidebar-button{
  display: none;
}
@media(max-width: 610px){
  .links-container{
    flex-direction: column;
    align-items: flex-start;

    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;

    background-color: #65350f;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease-out;
  }
  nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-button, .close-sidebar-button{
    padding: 20px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container{
    right: 0;
  }
  #sidebar-active:checked ~ #overlay{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}