body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #90ee90;
}

.topnav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.topnav li {
  display: inline;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.main {
  text-align: center;
}


.main ul {
  list-style-position: outside;
  padding-left: 20%; /* Adjust as needed */
  padding-right: 20%;
  display: inline-block; /* Keeps the list items centered */
  text-align: left; /* Aligns text within the list to the left */
}


.btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}


.accordion {
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.accordion:hover,
.accordion.active {
  background-color: #555;
}

.panel {
  padding: 0 18px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border: 1px solid #ccc;
}
