body {
  font: normal 400 1rem/1.5 "M PLUS 1p", suns-serif;
  color: #222;
  background: #E1F7F5 url(../img/background_pattern.png) repeat center/500px;
}
body::after {
  content: "";
  display: block;
  width: 100svw;
  height: 100svh;
  background: linear-gradient(0deg, transparent 10%, #61ACAD);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

main {
  width: calc(100% - 24px);
  max-width: 900px;
  margin: auto;
  padding: 24px;
}

section {
  margin: 0 auto 36px;
}

footer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 32px;
  padding: 12px;
}
footer .cooperation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#join-us {
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 2;
  padding: 6px;
  background: #EC4E20;
  border-radius: 0 50% 50% 0;
}
#join-us a {
  display: block;
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 50%;
  background: #FFFEFE;
  transition: all 0.3s ease;
}
#join-us a:hover {
  filter: drop-shadow(0 0 6px #FFFEFE);
}
#join-us a:hover svg {
  fill: #F7D051;
}
#join-us .link_discord svg {
  width: 100%;
  margin: auto;
  vertical-align: middle;
  fill: #EC4E20;
  transition: all 0.3s ease;
}

#location_tab {
  background: #FFFEFE;
}

.tab {
  display: flex;
  justify-content: end;
  gap: 0;
  width: fit-content;
  margin: 0 0 0 auto;
  background: #61ACAD;
  border-radius: 12px;
}
.tab_item {
  display: block;
  color: #FFFEFE;
  background: #61ACAD;
  padding: 6px 24px;
  border-radius: 12px 0 0 0;
}
.tab_item.current {
  background: #EC4E20;
}
.tab_item:hover {
  background: #F7D051;
}

.hidden {
  display: none;
}

.small {
  font-size: 0.75rem;
}

.page_header {
  border-bottom: #FFFEFE double 12px;
}
.page_title {
  width: calc(100% - 24px);
  max-width: 900px;
  margin: auto;
  padding: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFEFE;
}

.event {
  margin: 24px 0;
  padding: 0.5rem 2rem;
  background: #FFFEFE;
  border-radius: 12px;
}
.event_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #61ACAD;
  border-bottom: #61ACAD solid 1px;
}
.event_date {
  margin: 12px;
}
.event_photo {
  display: flex;
  gap: 1px;
}
@media (max-width: 800px) {
  .event_photo {
    flex-wrap: wrap;
  }
}
.event_photo img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.event_text {
  margin: 12px;
}/*# sourceMappingURL=archive.css.map */