*{
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    background-image: url('../assets/Background-1.jpg');
    background-size: cover;
    background-position: center;
}

.get-involved-subheader{
  padding-top: 100px;
}

.rounded-rectangle{
  display:block;
  margin:auto;
  width: 800px;
  height: 100px;
  background-color: white;
  border-radius: 100px;
  border-style:solid;
  border-width: 3px;
  box-shadow: 4px 4px 2px #1a516d60;
}

#subheader-text{
  text-align: center;
  text-transform: uppercase;
  padding-top: 25px;
  text-shadow: 2px 2px 2px #0b243060;
}
.calendar-container {
  display:block;
  margin:auto;
  padding: 0px;
}
#calendar-section{
  padding-top:40px;
}
#faq-section{
  padding-bottom:80px;
}
.accordion {
  background-color: transparent;
  color: #000000;
  display: block;
  margin: auto; 
  cursor: pointer;
  padding: 15px;
  width: 80%;
  border-bottom-style: solid;
  border-top-style:none;
  border-left-style:none;
  border-right-style:none;
  border-width: 2px;
  border-color:#398FB9;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active-acc, .accordion:hover {
  background-color: #47b0e450;
}

.panel {
  padding: 2px 18px;
  background-color: #FFFFFF50;
  max-height: 0;
  width: 80%;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display:block;
  margin: auto;
  text-align: center;
}
.accordion:after {
  content: '\002B'; 
  color: #777;
  float: right;
  margin-left: 5px;
}
.active-acc:after {
  content: "\2796"; 
}
.get-involved-header {
  text-transform: uppercase;
  text-align: center;
  color: #398FB9;
  padding: 10px;
  border-bottom: 3px solid #398FB9;
  margin: auto;
  width: 50%;
}
.blue-link{
  color: #398FB9;
}
.accordion-header{
  text-align:left;
  font-size:20px;
}
.accordion-list{
  text-align:left;
}

/* Responsive Design for smaller screens */
@media (max-width: 780px) {
  .rounded-rectangle{
    width: 90%;
    height: 80px;
  }
  #subheader-text{
    font-size: small;
    padding-top: 20px;
  }
  .accordion {
    width: 90%;
    font-size: small;
  }
  .panel {
    width: 90%;
    font-size: small;
  }
  .get-involved-header {
    width: 90%;
    font-size: medium;
  }
}