





.container {
    display: flex; /* Makes the children sit side-by-side */
    justify-content: space-between; /* Pushes one to the far left and the other to the far right */
    /* Optional: Add space between them, a guide is available on Coder Coder */
    gap: 20px; 
}

.left-div, .right-div {
  border: 1px solid black;
    padding: 10px;
    width: 400px;
    height: 1000px;
    overflow-y: auto;
    
}



a:link {
  color: maroon;
  background-color: transparent;
  text-decoration: underline;
}
a:visited {
  color: darkblue;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}



/* iPod Video Red - https://www.cursors-4u.com/cursor/ipod-video-red */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/ipod-video-red-34e23e7b-32.webp') 32 32, auto !important;
}
/* End www.Cursors-4U.com Code */























