body {
    color: white;
    text-align: center;
    box-sizing: border-box;
    background-color: black;
    display:grid;
   
  h1, h2, h3, p, a, li, ul{
font-family: 'Courier New', Courier, monospace;
color:white;

  }
.lefttext{
  text-align: left;
  padding-left: 5px;
  li{
    list-style-type: circle;
  }
}
  a {
    text-decoration: none;
  }
  a:hover {
text-decoration: underline;
font-weight: bold;
  }

/* Create three equal columns that floats next to each other */
.column {
  float: left;
 
}
.left, .right {
  width: 25%;
  background-color: black;
ul {
  list-style-type: none;
  line-height:2;
    margin: 10px;
  padding: 10px;
}
li a {
  padding: 8px 32px;
}
}

}
.middle {
  width: 48%;
  background-color: black;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/*Launch page button*/
.bigbox {
  width: 50%;
  height: fit-content;
  background-color: black;
  color:white;
  margin: auto;
  margin-top:100px;
  text-align: center;
  padding:20px;
  border-radius: 4px;
  border-style: solid;
  border-color: forestgreen;
  line-height: 2;
  a {
    font-size:xx-large;
    text-decoration: none;
    color:white;
    background-color: #228b22;
    font-weight: bold;
    padding: 8px 32px;
    border-radius: 3px;
  }
}
.box_top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  background-color:black;
  margin: 5px;
  padding: 8px;
  border-color:forestgreen;
  border-style:solid;
  height: fit-content;
}
.box_middle {
  background-color: black;
  border-radius: 2px;
  border-color:forestgreen;
  border-style:solid;
  margin: 5px;
  padding: 8px;
  color:white;
}
.box_bottom {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color:black;
  margin: 5px;
  padding: 8px;
  border-color:forestgreen;
  border-style:solid;
  height: fit-content;
}
@media screen and (max-width: 780px){
.left, .right, .middle {
  width: 98%;
  height: fit-content;
  display:contents;

}
.box_top, .box_middle, .box_bottom {
width: 90%;
margin-top:2px;
margin-bottom:2px;
margin-left:auto;
margin-right: auto;
height: fit-content;
}
}
.scrolling_box{
max-height: 200px;
overflow:auto;
scrollbar-color: forestgreen rgb(39, 39, 39);
}


