/* 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: white;
  color: black;
  font-family: Verdana;
}
/* Left Side Column */
.left-column {
    width: 25%; /* Adjust width as needed */
    float: left;
    background-color: #fff; /* Light grey background */
    padding: 5px; /* Padding for spacing */
    margin:5px;
    border: 3px dotted pink;
    display: inline-block;
    color: pink;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Right Side Column */
.right-column {
    width: 25%; /* Adjust width as needed */
    float: right;
    background-color: #fff; /* Light grey background */
    padding: 5px; /* Padding for spacing */
    margin:5px;
    border: 3px dotted pink;
    display: inline-block;
    color: pink;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Clearfix for the container */
.container::after {
    content: "";
    clear: both;
    display: table;
}
