.divsmall {
  border: 3px solid #13092D; /* Sets a 2px wide, solid, black border */
  width: 450px
}
div {
  border: 3px solid #13092D;
}

    img {
  height: auto; /* Maintain aspect ratio */
  border: 3px solid #FF0077; /* Add a border */
  border-radius: 1px; /* Round the corners */
}
 .scrolling-text {
      width: 100%; /* Or a specific width */
      white-space: nowrap; /* Keep text on one line */
      overflow: hidden; /* Hide text that goes beyond the container */
      box-sizing: border-box;
      animation: scroll-left 10s linear infinite; /* Apply animation */
    }

    @keyframes scroll-left {
      0% { transform: translateX(100%); } /* Start offscreen to the right */
      100% { transform: translateX(-100%); } /* Move offscreen to the left */
    }