
body {
  background-color: rgb(33, 30, 40);
  color: rgb(228, 212, 212);
  font-family: Verdana;
  /* Change ^ to be bluer. */
}

.main-header {
  border-style:solid;
  border-color: rgb(250, 250, 250);
  top:0;
  position:sticky;
  background-color:#322423
}

.low-nav {
  text-align: center;
}

#content {
  display:flex;

}

#main-content{
  float:left;
  width:100px;
  background-color:rgb(106, 93, 119);
  padding:20px;
}

#body {
  background-image:url(textures/DIAMOND1.JPG);
}

/*The bit that scrolls.*/
#scroll-body {
  display:flex;
  overflow:scroll;
}

#sidelines{
  width:100px;
}


/*legacy, so to speak*/
.l_parent-div {
  display: flex;
  justify-content: center; /* Horizontally centers the content */
  flex-flow: row nowrap;
  gap: 30px;
}

.l_content-box {
  background-color: rgb(116, 109, 131);
  color: rgb(33, 30, 40);
  border-style: solid;
  border-color: white;
}

