#full h1 {
  font-size: 5vh;
  position: absolute;
  color: white;
  left: 10vw;
  top: 25vh;
}

#FullPageImage {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#content {
  text-align: center;
}


#window {
  width: 100%;
  height: 110vh;
  margin: 50px auto;
  background: url("/Images/Beach.jpg") center/cover no-repeat;
  background-attachment: fixed;
  /* border-radius: 10px; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  align-content: center;
}

#window p {
  color: white;
  text-shadow: 2px 2px 4px black;
  width: 100%;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  display: inline-block;
  margin-top: 20vh;
}

#UpDown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2%;
  padding: 100px 0;
}

#UpDown img {
  max-height: 1000px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#top {
  margin-top: -60px;
}

#Select {
  display: inline-block;
  width: 100%;
  /* color: #48E5C2; */
  /* background-color: grey; */
}

#items {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

#item img {
  display: block;
  max-height: 60vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  filter: brightness(1);
  transition: filter 1s ease;
}

#item {
  position: relative;
  padding: 20px;
  transition: transform 1s ease;
}

#item:hover{
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 1s ease;
}

#item:hover img {
  filter: brightness(.5);
  transition: filter 1s ease;
}

#item h3,
#item hr,
#item p {
  position: absolute;
  left: 10px;
  right: 10px;
  color: white;
}

#item h3 { 
  bottom: 60px; 
  transition: bottom 1s ease;
}

#item hr { 
  bottom: 50px; 
  transition: bottom 1s ease;
}

#item p  { 
  bottom: 20px; 
  transition: bottom 1s ease;
}

#item hr {
  width: 30%;
  border: 1px solid white;
}

#item:hover h3 {
  bottom: 100px;
  transition: bottom 1s ease;
}

#item:hover hr {
  bottom: 85px;
  transition: bottom 1s ease;
}

#item:hover p {
  bottom: 50px;
  transition: bottom 1s ease;
}

#map-content {
  width: 100%;
  height: 10vh;
  align-content: center;
  background-color: #2f8e79;
}

#map {
  font-size: 3.5vh;
  text-decoration: none;
  color: white;
  transition: font-size 1s ease;
}

#map-content:hover {
  cursor: pointer;
}

#map-content:hover a{
  font-size: 4vh;
  transition: font-size 1s ease;
}

.Gallery {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 1px 0;
}

.track {
  padding: 2px 0;
  white-space: nowrap;
}

.track:hover {
  animation-play-state: paused;
}

.pad {
  padding-bottom: 10px;
}

.t-l {
  animation: scroll 25s linear infinite;
}

.t-r {
  animation: scrollR 25s linear infinite;
}

.track img {
  display: inline-block;
  height: 125px;
  margin: 0 1px;
  vertical-align: middle;
  border-radius: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

#par {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  padding-bottom: 7vh;
}

#paroxh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 31%;
}

#paroxh img {
  height: 7vh;
}