* {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
}

body {
  background-color: #38383c;
  overflow: hidden;
}

.title {
  display: block;
  text-align: center;
  color: white;
  font-size: 4em;
  z-index: 99;
}

.sub-title {
  display: block;
  color: white;
  font-size: 2em;
}

.divider {
  display: block;
  margin: 1em;
  padding: 1em;
}

.leaderboard {
  counter-reset: section;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.leaderboard__item {
  display: flex;
  width: 100%;
  color: white;
  align-items: center;
  padding: 0.2em;
  margin-bottom: 1em;
  border-radius: 0.4em;
  box-shadow: 0 0 10px #0092f1;
  border: 2px solid white;
  position: relative;
}
.leaderboard__item__party {
  position: absolute;
  top: -2em;
  right: -2em;
  width: 4em;
  height: 4em;
}
.leaderboard__item__counter::before {
  margin-left: 1em;
  counter-increment: section;
  content: counter(section);
  background-color: #0092F1FF;
  padding: 0.35em 0.7em;
  font-size: 1.2em;
  border-radius: 5em;
  display: inline-block;
  text-align: center;
}
.leaderboard__item__name {
  padding: 0 1em;
  font-weight: normal;
  letter-spacing: 0.1em;
  flex: auto 1 1;
  font-size: 2em;
}
.leaderboard__item__score {
  padding: 0.5em;
  color: #a57cb3;
  font-size: 1.6em;
  margin: 0 1em 0 0.2em;
  border-radius: 1em;
}

.attrib {
  position: fixed;
  bottom: 0;
  right: 0;
  color: gray;
  padding: 1em;
}
.attrib a {
  color: gray;
}

.background {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.background__black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: -1;
}

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