@charset "utf-8";
div.scrollmenu {
  bottom: 0;
  left: 0;
  width: 100%;    
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  border: 10px solid grey;
  
}

div.scrollmenu a {
  display: inline-block;
  text-align: left;
  text-decoration: none;
  padding: 10px;
}

div.scrollmenu a:hover {
  background-color: green;
}

@media screen and (max-width: 800px) {
 div.scrollmenu img {max-width: 100%; height: auto} 
 div.scrollmenu a {width: 80%}
}

.animated-div {
  width: 100%;
  height: 100px;
  background-color: dodgerblue;
  position: relative; /* Essential for 'top' or 'transform' to work relative to its original position */
  animation: moveUp 2s ease-in-out infinite alternate; /* Applies the animation */
}

@keyframes moveUp {
  0% {
    transform: translateY(0); /* Starting position (no vertical translation) */
  }
  100% {
    transform: translateY(-50px); /* Moves the div 50px upwards */
  }
}