div{
    display: flex;
    justify-content: center;
}

.scroll-container {
  width: 100vw;
  height: 100vh;
  overflow: auto;
  display: flex;
  flex-wrap: nowrap;
  white-space: normal;
  align-content: flex-start; 
  scroll-behavior: smooth; 
}
.scroll-content {
    display: flex;
    flex-wrap: wrap;
    width: max-content;
    height: max-content;
}
.scroll-content img {
  width: 200px;
  height: 150px;
  margin: 5px;
  object-fit: cover;
  display: inline-block;
}
.sideways {
    transform: rotate(270deg);
}
html, body{
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    min-height:100vh;
    background:linear-gradient(100deg, antiquewhite 20%, orange 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
}

@font-face{
    font-family: myFirstFont;
    src: url(Neon.ttf);
  }
  
  div{
    font-family: myFirstFont
  }
 @keyframes dropDown {
   0% {
     opacity: 0;
     transform: translateY(-100px);
   }
   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }
.drop-down {
  animation-name: dropDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}
h1.drop-down {
  animation-delay: 0s;
}
p.drop-down {
  animation-delay: 0.5s;
}
  h1{
    font-size: 300%;
    text-align: center;
    font-family: myFirstFont;
  }

  p{
    color:darkgreen;
    font-family: myFirstFont;
    font-size: 130%;
  }
@keyframes floatSideToSide {
  0% { transform: translateX(0); }
  50% { transform: translateX(50px); }
  100% { transform: translateX(0); }
}
  img{
    filter: drop-shadow(100px 100px 100px 100px);
    width: 50%;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
  }
.image-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-behavior: smooth;
}
.image-row img {
    cursor: pointer;
    margin: 5px;
    flex-shrink: 0;
    max-width:150px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    animation: floatSideToSide 4s ease-in-out infinite;

}

.mask1{
    -webkit-mask-image: linear-gradient(black, transparent);
    mask-image: linear-gradient(black, transparent);
}

footer{
    text-align: center;
    border-top: 0.5px solid black;
}

a:link {
    color: green;
}

a:visited {
    color: darkgreen;
}

a:hover {
    color: red;
    text-decoration: underline;
}

a:active {
    color: orange;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.image-row img:hover {
  cursor: pointer;
}
