main {
  width: 90vw;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template: "a a" "b c" "d e";
}
@media screen and (max-width: 600px) {
  main {
    grid-template: "a" "b" "c" "d" "e";
  }
}
main h1 {
  grid-area: a;
  text-align: center;
  margin: 30px 0;
}
main .presentation {
  grid-area: b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .presentation .section-info {
  display: block !important;
  flex-grow: 0;
  margin: auto !important;
}
main p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin-top: 50%;
}
main p a {
  color: black;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  main p a {
    color: #cccccc;
  }
}
main .schedule {
  grid-area: c;
}
main .contact {
  grid-area: d;
  display: flex;
  flex-direction: column;
}
main .contact p {
  text-align: center !important;
}
main .direction {
  grid-area: e;
}
main section {
  max-width: 100%;
}
main section h2 {
  text-align: center;
  margin-bottom: 20px;
}
main section .section-info {
  width: 80%;
  max-width: 400px;
  margin: auto;
  margin-bottom: 30px;
  text-align: justify;
}
main section table {
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}
main section table tr {
  background-color: #1e1e1e;
  color: #cccccc;
}
@media (prefers-color-scheme: dark) {
  main section table tr {
    background-color: #cccccc;
    color: #1e1e1e;
  }
}
main section table tr td {
  padding: 10px 15px;
  border: 1px solid #fff;
}
@media (prefers-color-scheme: dark) {
  main section table tr td {
    border: 1px solid #1e1e1e;
  }
}
main section table tr td.day {
  font-weight: 700;
}
main section .mapouter {
  width: 100%;
  height: 300px;
  margin: auto;
}
main section .gmap_canvas {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=about-main.css.map */