* {
    font-family: "Tahoma", "Arial";
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body {
    background-image: linear-gradient(#7BD2BD, #B1D8BE, #BEE18F);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

main {
  padding-top: 0.5rem;
}

#logo {
  padding-top: 1rem;
  max-width: 75vw;
  height: auto;
}

section {
  width: 90%;
  height: 100%;
  margin: 1rem auto 1rem auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Adjust font size for tablets */
  * {
      font-size: 1.5rem;
  }
  #logo {
    padding-top: 0.5rem;
  }

  section {
    width: 85vw;
    height: 90vh;
    margin: 1rem auto 1rem auto;
  }
}

@media (min-width: 1024px) {
  /* Adjust font size for desktops */
  * {
      font-size: 1.8rem;
  }
  #logo {
    max-width: 60vw;
    padding-top: 0.1rem;
  }
  section {
    width: 80vw;
    height: 125vh;
    margin: 1rem auto 1rem auto;
  }
}

header, footer {
  width: 100%;
  height: 3rem;
  background-color:#FFFC89;
  display: flex;
  align-items: center;
}

header {
  position: fixed;
  box-shadow: 0 0 15px 0.5em #5F9F8F;
  justify-content: left;
}

footer {
justify-content: center;
}

#headerTitle {
  margin-right: auto;
}

button {
    background-color:#FFFC89;
    padding: 0.5rem;
    border-radius: 15px;
    border: none;
    display: inline-block;
}

.anchor {
    display: block;
    height: 4rem;
    visibility: hidden;
}

#burger-menu {
    cursor: pointer;
    height: 27px;
    width: 27px;
    margin: 50px;
    overflow: visible;
    position: relative;
    z-index:2;
}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
  background: #000;
  display: block;
  height: 4px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
}
#burger-menu span:before,
#burger-menu span:after {
  content: "";
}
#burger-menu span {
  right: 0px;
  top: 13px;
  width: 27px;
}
#burger-menu span:before {
  left: 0px;
  top: -10px;
  width: 16px;
}
#burger-menu span:after {
  left: 0px;
  top: 10px;
  width: 20px;
}

#burger-menu.close span {
  transform: rotate(-45deg);
  top: 13px;
  width: 27px;
}
#burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 27px;
}
#burger-menu.close span:after {
  top: 0px;
  left:0;
  transform: rotate(90deg);
  opacity:0;
  width:0;
}

#menu{
  z-index:1;
  min-width:100%;
  min-height:100%;
  position: fixed;
  top:0;
  height:0;
  visibility: hidden;
  opacity: 0;
  text-align:center;
  padding-top:20px;
  transition: all 0.3s ease-in-out;
}

#menu.overlay{
  visibility: visible;
  opacity: 1;
  padding-top:100px;
  background:rgba(0,0,0,0.5);
}

#menu li{
  list-style:none;
}
#menu a{
  color:#fff;
  display:block;
  font-size: 32px;
  margin-bottom:30px;
  text-decoration:none;
}

h1 {
  padding: 1rem;
}

#register {
    margin: 1rem;
}

.accordion > h2 {
  padding-bottom: 1rem;
}
.accordion-container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  border: 3px solid #7BD2BD;
  border-radius: 24px;
  overflow: hidden;
}

.accordion-item {
  width: 100%;
}

.accordion-trigger {
  width: 100%;
  display: block;
  background-color: #BEE18F;

  color: rgb(0, 0, 0);
  padding: 24px;
  text-align: left;
  border: none;
  display: flex;
  gap: 16px; /*??*/
  justify-content: left;
  cursor: pointer;
}

.accordion-icon {
  transition: transform 0.5s;
  color: #FFFC89;
}

.accordion-item.is-active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item:not(:first-of-type) .accordion-trigger {
  border-top: 3px solid #7BD2BD;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.accordion-content p {
  margin: 24px;
  font-size: 1rem;
}
.accordion-content p strong {
  font-size: 1rem;
}

.organizerGroups {
  margin-left: auto;
  margin-right: auto;
  width: 75vw;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 2rem;
}

.organizerGroups > img {
    background: #FFFC89;
    padding: 5px;
    max-height: 5rem;
    margin-top: 10px;
    line-height: 150px;
    text-align: center;
}