body {
  margin: 0;
  padding: 0;
  background: #fffddb;
}

.main {
  max-width: 1024px;
  box-shadow: 5px 0px 25px #ffffff, -5px 0px 25px #ffffff;

  background-color: white;
  padding-bottom: 200px;
  margin: auto;
}

.main div {
  margin-top: 20px;
  margin-left: 75px;
  margin-right: 75px;
}

.space {
  height: 20px;
}
#heading{
  margin-left:75px;
  margin-right:75px;
}


#logo {
  filter: drop-shadow(2px 2px 2px #222);
  z-index: 1;
}
h3 {
  color: black;
  font-family: 'Merriweather';
}

h4 {
  color: black;
  font-family: 'Merriweather';
}

ul {
  list-style-type: none;
}

#navbar {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #074411;
  box-shadow: 0px 2px 2px 1px #222;
}

#navbar li {
  float: right;
}

#navbar a {
  font-family: 'Merriweather';
  display: block;
  padding: 8px;
  background-color: #074411;
  text-decoration: none;
  color: white;
}

#navbar a:hover:not(.active) {
  background-color: #333;
}

.active {
  background-color: white;
  color: black;
}

.button {
  background-color: #111;
  border: none;
  color: white;
  cursor: pointer;
  outline: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  transition-duration: 0.4s;
  border: 2px solid #111;
  margin-top: 10px;
}

.button:hover {
  background-color: #333;
  color: white;
}

.button:active {
  background-color: #333;
  transform: translateY(2px);
}

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    margin-left:75px;
    color: black;
    cursor: pointer;
    padding:18px;
    font-size: 20px;
    font-family: 'Merriweather';
    width: 65%;
    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) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}
button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
