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

#main {
            background-color:lightgreen;
            border: 1px solid;
            border-color:green;
            color:#333333;
            padding: 10px 20px 20px 20px;
            width: 60%;
            height:auto;
            margin-left: 20%;
            margin-right: 20%;
                }
                
#main-title {
            background-color: darkseagreen;
            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: #eee;
  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: #ccc;
}

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