/* 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." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}
.square-container {
    display: flex; /* Positions lists side-by-side */
    width: 300px; /* Width of your square */
    height: 300px; /* Height of your square */
    border: 2px solid black; /* Creates the box */
    background-color: lightgray;
    padding: 10px;
    justify-content: space-around; /* Adds space between lists */
}

.square-container ul {
    list-style-type: square; /* Sets bullet points to squares */
}
