#title{
	padding-bottom: 1.5em;
}
body{
	background-color: #141414;
	position: relative;
	color: white;
	font-family: "Georgia";
	width: 100%;
	margin: 0;
}
h1{
	text-align:center;
	font-size: clamp(40px, 5vw, 6vw);
	padding-top: clamp(60px, 5vw, 6vw);
	text-decoration-line: underline;
	text-decoration-color: #8b4513;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition 0.2s linear;
}

.container{
    padding: 2rem 5%;
	margin-bottom: 10vh;
}

.container .image-container{
    columns: clamp(150px, 25vw, 100vw) 3;
    gap: clamp(12px, 3vw, 100vw);
}

.container .image-container img{
    width: 100%;
    margin-bottom: clamp(12px, 3vw, 100vw);;
    border-radius: 1rem;
}

.container .image-container img:hover{
    transform: scale(1.01);
}

#fullscreen-container{
	z-index: -1;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgb( 0, 0, 0, 0.9);
	text-align: center;
	justify-content: center;
	align-items: center;
}


#fullscreen-image{
	max-width: 85vw;
	max-height: 90vh;
}

#fullscreen-close{
	position: fixed;
	top: max(12px, 1vw);
	right: max(12px, 1vw);
	font-size: max(50px, 3vw);
	color: white;
	cursor: pointer;
}

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;
  }
}

.back ul {
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.back li {
	text-align: center;
}
.back li a {
	font-size: 4vh;
	display: block;
	color: white;
	background-color: #202020;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	border: 0.5vh solid white;
}
.back li a:hover{
	background-color: grey;
}