:root {
  --rps-contrast: #12171c;
  --rps-base: #ffffff;
  --rps-font-family-sans: "Inter", sans-serif;
  --rps-font-family-mono: "Fira Mono", "Consolas", "Menlo", monospace;
}

body {
  background: var(--rps-contrast);
  color: var(--rps-base);
  font-family: var(--rps-font-family-sans);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.rps-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
.rps-banner.mobile {
  display: none;
}

@media (max-width: 1160px) {
  .rps-banner {
    zoom: 0.8;
  }
}
@media (max-width: 940px) {
  .rps-banner {
    zoom: 0.6;
  }
}
@media (max-width: 700px) {
  .rps-banner.mobile {
    zoom: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .rps-banner.desktop {
    display: none;
  }
}
.rps-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rps-select-member {
  background: #181c1f;
  color: #4169e1;
  font-family: var(--rps-font-family-mono);
  border: 2px solid #4169e1;
  border-radius: 0;
  padding: 1rem;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 0 8px #4169e1;
  margin: 1rem;
  letter-spacing: 0.5px;
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.rps-select-member:focus {
  box-shadow: 0 0 16px #4169e1;
  border-color: #fff;
}

.rps-loader,
.rps-clan-member-information,
.rps-member {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rps-loader {
  overflow: hidden;
  white-space: nowrap;
  flex-direction: row;
}

.rps-typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #4169e1;
  animation: rps-typewriter 1.5s steps(17, end) 0.5s 1 normal both, rps-blink 0.7s steps(1) infinite;
}

@keyframes rps-typewriter {
  from {
    width: 0ch;
  }
  to {
    width: 17ch;
  }
}
@keyframes rps-blink {
  0%, 100% {
    border-color: #4169e1;
  }
  50% {
    border-color: transparent;
  }
}
.rps-loader,
.rps-member__total-raids {
  color: #4169e1;
  font-family: var(--rps-font-family-mono);
  letter-spacing: 3px;
  margin: 1rem;
  text-align: center;
}

.rps-member__emblem {
  margin: 1rem;
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  height: 96px;
  width: 474px;
}
.rps-member__name {
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 20%;
}

@media (max-width: 474px) {
  .rps-member__emblem {
    width: 100%;
    height: 96px;
    background-size: contain;
  }
  .rps-member__name {
    font-size: 1.25rem;
  }
}
.rps-raid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 1rem;
}
.rps-raid-list .rps-raid {
  font-family: var(--rps-font-family-mono);
}
.rps-raid-list .rps-raid__img {
  width: 300px;
  height: 200px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  filter: grayscale(1);
  transition: filter 5s cubic-bezier(0.4, 0, 0.2, 1);
}
.rps-raid-list .rps-raid__img.rps-raid-img-color {
  filter: grayscale(0);
}
.rps-raid-list .rps-raid__name {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  font-size: 1.25rem;
}
.rps-raid-list .rps-raid__count {
  font-weight: 100;
  font-size: 3.5rem;
}

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