body {
  font-family:'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Set minimum height to fill the viewport */
}

.banner {
  background-color: white; 
  text-align: center; 
  color:#523178; 
  font-size:3em
}

.banner img {
  margin-top: 10px;
}

.content {
  flex: 1; /* Take up remaining vertical space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  font-size: 20px;
}

.welcome {
  color: #383838;
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
}

.survey {
  color: #383838;
  margin-bottom: 20px;
  font-size: 24px;
}

.thank-you {
  color: #383838;
  text-align: center;
  margin-bottom: 20px;
}

.survey-link {
  text-align: center;
}

li + li {
    margin-top : 0.5em;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  background-color: #523178;
  color: whitesmoke;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, transform 0.2s;
  min-width: 300px;
}

.button:hover {
  background-color: #F4AF1E;
  color: whitesmoke;
  text-decoration: underline;
}

.accordion-container {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: lightgray solid 1px;
}

.accordion {
  display: flex;
  align-items: flex-start;
  background-color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion::before {
  content: '\02795'; /* "Plus" sign (+) */
  font-size: 15px;
  float: left;
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1.5;
}

.active::before {
  content: "\2796"; /* "Minus" sign (-) */
}

.panel {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.footer {
  background-color: whitesmoke;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap; /* Allow flex items to wrap to the next line */
  justify-content: center;
  border-radius: 5px 5px 0 0;
}

.footer a {
  text-decoration: none;
  color: #252F49;
  margin: 5px 10px;
}

.footer a:hover {
  text-decoration: underline;
}


/* Media query for larger screens */
@media screen and (min-width: 780px) {
  .container {
      max-width: 70%;
  }
  .content {
    font-size: 120%;
  }
}

/*@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer a {
    display: block;
    width: 100%;
    text-align: center;
  }
}*/