body {
  background-color: darkseagreen;
  color: white;
  font-family: "Courier New";
}

.panel {
  color:black;
}


                
#main {
       background-color: darkcyan;
       border-top: 2px solid;
       border-top-color: #7FFFD4;
       border-left: 2px solid;
       border-left-color: #7FFFD4;
       border-bottom: 2px solid;
       border-bottom-color: #008B8B;
       border-right: 2px solid;
       border-right-color: #008B8B;
       width: auto;
       height: 50px
}



#main-title h1 {
    text-align: left;
    padding-left: 10px;
    margin: 0; /* optional, removes default spacing */
    line-height: 50px; /* optional: vertically centres inside your 50px box */
}



a {font-style: italic;}

.header-image {
  display: block;        /* Makes margin auto work */
  margin: 0 auto;        /* Centers horizontally */
  width: auto;          /* Resize width */
  height: 300px;          /* Keeps aspect ratio */
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: Aquamarine;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: LemonChiffon;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  color: black;
  overflow: hidden;
  max-height: 0;
}

.side-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}

