/** @format */

body {
  font-family: Arial, sans-serif;
  background-color: #425c60;
  margin: 0;
}

.header {
  font-size: 20px;
  text-shadow: 2px 4px 2px #0b6445;
  text-align: center;
  color: rgb(187, 209, 195);
  margin: -10px;
  max-width: 99%;
}

.header h1 {
  margin: 0;
  line-height: 1.8;
  font-size: 3rem;
}

.gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0px auto;
  background-color: #2c494e;
  max-width: 75%;
  border-radius: 25px;
  scrollbar-color: rgb(188, 237, 226) rgb(22, 47, 43);
}

.gallery figure {
  flex: 0 0 100%;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery img {
  width: 95%;
  height: auto;
  max-height: 74vh;
  object-fit: cover;
  border: #05a16b 5px solid;
  border-radius: 25px;
  padding: 3px;
}

.gallery figcaption {
  font-size: 24px !important;
  text-shadow: rgb(122, 122, 122) 4px 3px 0px;
  margin-top: 0.5rem;
  color: rgb(231, 244, 221);
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  width: 100%;
  word-wrap: break-word;
}

::-webkit-scrollbar {
  height: 26px;
}
