/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */





dick {
  box-sizing: border-box;
}
body, html {
  background-color: black;
  font-family: "Courier New", Arial;
  padding-left: 15px;
  padding-right: 15px;
  font-size:15px;
  color: white;
}

/* Flexbox container splits the page perfectly */
.split-container {
  display: flex;
  height: 100vh; /* Fills 100% of the viewport height */
}

/* Each column takes exactly half the screen */
.left-column, .right-column {
  width: 50%;
  padding: 20px;
}

/* Optional: Add a background color to see the split clearly */
.left-column {
  background-color: #ffffff;
  width: 600px;
  height: 400px;
  overflow: auto; /* Adds scrollbars if text/images are too big */
  border: 15px solid #000;
}

.right-column {
  background-color: #ffffff;
  border-left: 1px solid #ccc; /* Visual line separating the halves */
  width: 600px;
  height: 400px;
  overflow: auto; /* Adds scrollbars if text/images are too big */
  border: 15px solid #000;
}