/*Base Styles*/
body {
  font-family: "MS Gothic", sans-serif;
  font-size: 14px;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;

  background: black url("https://shizaho.neocities.org/resources/starsbg.gif")
    repeat fixed;

  overflow: auto;
}

/*Top Banner Text*/
a {
  color: #4b71c2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*Layout*/

.main-div {
  display: flex;
  text-justify: auto;
  justify-content: center;
  gap: 6px;
  max-width: 850px;
  margin: 0 auto;
}

.container {
  width: 800px;
  padding: 10px;
  border: 3px double #27417a;
  background: black;
}

.nav {
  text-align: center;
  text-justify: auto;
  padding: 5px;
  background: #333;
  border: 3px inset #27417a;
  overflow: hidden;
  position: relative;
}

.nav-text {
  display: flex;
  white-space: nowrap;
  animation: nav-scroll 12s linear infinite;
  position: relative;
  min-width: 100%;
}

@keyframes nav-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.feedback-text {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 8px;
}

.feedback-text img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.feedback-text p {
  margin: 0;
  text-justify: auto;
  font-weight: bold;
}

.container-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 10px;
  border: 3px double #27417a;
  background: black;
}

.container-right-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: 0.2em;
  width: 100%;
}

#statuscafe {
  max-width: 150px;
  padding: 0.3em;
  margin-top: auto;
  overflow: hidden;
  background-color: black;
  border: 1px solid #27417a;
}
#statuscafe-username {
  margin-bottom: 0.5em;
}
#statuscafe-content {
  margin: 0 1em 0.5em 1em;
}

.container-buttons {
  display: flex;
  justify-content: center;
  margin: 5px auto 0 auto;
  max-width: 850px;
  gap: 20px;
  padding: 5px;
  border: 3px double #27417a;
  background: black;
  box-sizing: border-box;
}

.hitcounter {
  text-align: center;
  margin-top: 5px;
}
