/* 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: teal;
  margin-left: 80px;
  margin-right: 80px;
  color: lightgreen;
  font-family: courier;
  text-align: center;
}
/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: #e90;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

h1{
  text-align: center;
  color: lightgreen;
}

.ridge {outline-style: ridge;
color: lightgray
}
ul {
  list-style-type: square;
  background: #1C5953;
  width:200px;
  height:100;
  padding: 10px;}

li {
  text-align: left;
  color: orange;
  margin: 5px;
}
body, html{

    height: 100%; /* Ensures the body fills the entire viewport height */
}

.container {
    display: flex; /* Makes the container a flex container */
    height: 100vh; /* Makes the container fill the full viewport height */
}

.left-panel, .right-panel {
    flex: 1; /* Each panel grows equally to fill the available space */
    overflow: auto; /* Allows scrolling within the panels if content overflows */
    padding: 20px;
}

.left-panel {
    text-align:left;
    background-color: teal; /*#ACE3C9;*/
    
    color: white;
}

.right-panel {
    text-align:right;
    background-color: teal;
    color: white;
}

