body {
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  font-family: "Verdana", sans-serif;
}
body a {
  color: #0078ff;
  text-decoration: none;
}
body .content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
body .content .speedometer-container, body .content .shortcut-help-container {
  z-index: 1;
  position: fixed;
  padding: 32px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}
body .content .speedometer-container {
  bottom: 16px;
}
body .content .speedometer-container p {
  font-weight: normal;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
}
body .content .shortcut-help-container {
  top: 16px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s 5s, visibility 1s 5s;
}
body .content .shortcut-help-container.hide {
  visibility: hidden;
  opacity: 0;
}
body .content .shortcut-help-container p {
  font-weight: normal;
  font-size: 0.8rem;
  margin: 0;
}
body .content .shortcut-help-container p .italic {
  font-style: italic;
}
@media only screen and (max-width: 800px) {
  body .content .shortcut-help-container {
    width: calc(100% - 96px);
  }
}
body .content section {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body .content section .info-container, body .content section .service-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  transform: scale(0);
}
body .content section .info-container.show, body .content section .service-container.show {
  opacity: 1;
  visibility: visible;
}
body .content section .info-container {
  width: 100%;
  z-index: 100;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body .content section .info-container > a {
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body .content section .service-container {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 1000px;
}
body .content section .service-container > .title {
  position: absolute;
  bottom: calc(100% + 32px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  margin: 0;
}
body .content section .service-container > div {
  padding: 32px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
}
body .content section .service-container > div .title {
  margin: 0 0 16px 0;
  text-align: center;
}
body .content section .service-container > div p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
  font-weight: normal;
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */
