body {
  font-family: "Poppins", sans-serif;
  background-color: #faf9f6;
}

h1 {
  font-size: 2rem;
}

.main-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(1.2);
  z-index: -1;
}

.topbar {
  display: flex;
  width: 100%;
  align-items: center;
}

.logo {
  position: relative;
  width: clamp(120px, 10vw, 450px);
  padding-top: 20px;
}

.title {
  position: relative;
  font-size: clamp(28px, 5vw, 50px);
}

footer {
  text-align: center;
  color: midnightblue;
}

.screenfill {
  position: absolute;
  top: 80px;
  left: 10px;
  min-height: 80vh;
  width: 100%;
}

.sidebar {
  position: absolute;
  top: 10px;
  left: 5px;
  height: 100%;
  width: 40px;
  border-radius: 10px;
  background-color: rgba(3, 88, 17, 0.5);
  text-align: center;
}

.sidemenu {
  display: grid;
}

.button {
  margin-left: 2px;
  position: relative;
  display: inline-block;
  border: none;
  background: none;
  padding-bottom: 20px;
  cursor: pointer;
}

.button img {
  display: block;
  position: relative;
  margin-left: 1px;
  width: 80%;
  background: none;
  filter: brightness(0.8);
}

.button:hover img {
  filter: brightness(1.4);
}

.iconcircle {
  position: absolute;
  top: 20%;
  left: 45%;
  width: 32px;
  height: 34px;
  background-color: rgb(4, 55, 12);
  border-radius: 50%;
  transform: translate(-47%, -40%);
  z-index: -1;
}

.textbox {
  position: absolute;
  top: 10px;
  left: 60px;
  height: 100%;
  width: 80%;
  margin-right: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: auto;
}

.imagedisplay {
  position: absolute;
  top: 10px;
  left: 60px;
  height: 100%;
  width: 80%;
  margin-right: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  /*  overflow: scroll;*/
  object-fit: contain;
}

#currentImage {
  margin-left: 10px;
  width: 90%;
  height: 80%;
  object-fit: contain;
}

.homebox {
  display: block;
}

.gallerybox {
  display: none;
}

.aboutbox {
  display: none;
}

.text {
  width: 90%;
  margin-left: 20px;
  margin-right: 20px;
}

.menubutton {
  color: white;
  width: 80px;
  margin-top: 10px;
  border-radius: 16px;
  background-color: darkgreen;
}

.thumb-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 200px));
  gap: 5px; /* Spacing between images */
  padding: 5px;
}

.thumb {
  width: 100%;
}
