body {
  background-color: rgb(10, 10, 10);
  margin: 0;
  padding: 0;
  font-family: "Space Mono", "Noto Sans", "Roboto", sans-serif;
  text-align: center;
  overflow: auto;
  border: solid;
  font-size: 16px;
}

h1 {
  color: white;
  font-family: "Space Mono", monospace;
}

h6 {
  color: white;
  margin: 0;
}

table {
  overflow: auto;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
    color: #ffff00;
  }
  25%, 75% {
    opacity: 0;
    color: #ffff00;
  }
  50%, 100% {
    opacity: 1;
    color: #ffff00;
  }
}

.blink {
  display: inline-block;
  animation: blink 5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 192, 27, 0.9),
               0 0 20px rgba(255, 192, 27, 0.9),
               0 0 30px rgba(255, 192, 27, 0.9);
}

.header {
  background-color: rgb(10, 10, 10);
  max-height: 50%;       
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-size: 2rem;
}

.title {
}

.menu {
  border-top: solid;
  border-color: whitesmoke;
  font-size: 1.5rem;
}

ul {
  list-style-type: none;
  display: inline-flex;
  gap: 1rem;
  padding: 0;
  border-color: white;
}

li {
  color: white;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  border-bottom: solid;
}

a {
  color: white;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  border-bottom: solid;
}

li:hover, a:hover, a:active {
  color: yellow;
}

.content {
  display: inline flow-root list-item;
  padding-top: 10em;
  font-size: 1.5rem;
}

.preheader {
  margin: 0;
}

.detail {
  background-color: lightyellow;
  opacity: 0.7;
  margin-bottom: 2em;
}

td {
  display: none;
}

td:nth-child(1), td:nth-child(2), td:nth-child(3), td:nth-child(4)  {
  display: table-cell;
  width: 7rem;
}

td:nth-child(3)  {
  display: table-cell;
  width: 16rem;
}

tr:hover {
  background-color: black;
  color: white;
}
tr:nth-child(1):hover {
  background-color: lightyellow;
  color: black;
}

.botton {
  color: yellow;
  border-top: solid;
}

.reveal-effect {
  opacity: 0;
  transform: translateY(-80em);
  animation: revealAnimation 3s ease-in-out forwards;
}

.fade-out {
  opacity: 1;
  animation: fadeOutAnimation 2s ease-in-out forwards;
}

@keyframes revealAnimation {
  0% {
      opacity: 0;
      transform: translateY(-80em);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeOutAnimation {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 8rem;
  left: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  min-width: 20rem;
  min-height: 30rem;
  display: grid;
  margin-top: 1rem;
}

.popup-title {
  display: block;
}

.close {
  position: absolute;
  right: 1rem;
  cursor: pointer;
  font-size: 2rem;
}

.nickname {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.role {
  margin-top: 0;
  font-weight: bolder;
}

.simple-label {
  margin: 0;
  max-height: 2rem;
}

img {
  min-width: 6rem;
  max-width: 6rem;
  min-height: 5rem;
  max-height: 5rem;
  width: 50%;
  height: auto;
  border-radius: 50%;
  margin-top: 2rem;
}

.popup-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}

.line {
  display: inline-flex;
  margin: 0;
  align-items: center;
}

.starplayer {
  color: gold;
}