* {
  color: #eee;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #060606;
  font-family: --system-ui, --apple-system, Helvetica, Tahoma, Arial,
    "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei",
    "WenQuanYi Micro Hei", sans-serif;
}
a {
  text-decoration: none;
}
.container {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.container canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.container #content {
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-self: center;
  text-align: center;
  overflow: hidden;
  display: none;
}
.container #content h3 {
  font-size: 1.2em;
}
.container #content h3 #name {
  color: #0d6aad;
}
.container #content #vortex img {
  width: 70%;
  object-fit: cover;
}
.container #content .meta #time {
  color: #d7d7d7;
}
.container #content .meta #message-header {
  margin-top: 10rem;
}
.container #content .meta #message {
  margin: auto;
  text-align: center;
  padding: 1rem 10rem;
}
.container #content .meta #message .message-left,
.container #content .meta #message .message-right {
  font-size: 17px;
  color: white;
}
.container #content .meta #message .text {
  text-shadow: 2px 2px 2px #3e3e3e;
  font-style: italic;
}
.container #content .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  width: 100%;
  font-size: 13px;
  text-align: center;
}
.container #content .footer img#logo {
  margin-top: 0.5em;
  width: auto;
  height: 16px;
}
@media screen and (max-width: 769px) {
  .container #content .meta #message {
    padding: 1.5rem;
  }
}
.container .dialog-box {
  display: none;
  position: fixed;
  color: rgba(0, 0, 0) !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.dialog-box .dialog-message {
  color: #060606 !important;
  text-align: center;
}
.dialog-box .dialog-note {
  color: #4d4c4c !important;
  font-size: 10px;
  text-align: center;
}
.dialog-box .dialog-message .dialog-message-refer {
  color: #d32f2f !important;
  font-size: larger !important;
  font-weight: bold !important;
}
.dialog-box input[type="text"],
.dialog-box input[type="email"] {
  color: #060606 !important;
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.dialog-box .button-container {
  display: flex;
  justify-content: space-between;
}
.dialog-box button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}
.submit-btn {
  background-color: #5cb85c;
}
.submit-btn:hover {
  background-color: #4cae4c;
}
.cancel-btn {
  background-color: #f44336;
}
.cancel-btn:hover {
  background-color: #d32f2f;
}
