body {
  background-color: black;
}

.kcenter {
  text-align:center;
  font-family:monospace;
  font-size: 1.2rem;
  color: red;
}

h1 {
  font-family:monospace;
}

/* Rainbow glowing box */
.glowing-box {
  padding: 10px;
  border-radius: 10px;
  animation: rainbowGlow 3s infinite;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

@keyframes rainbowGlow {
  0% { box-shadow: 0 0 10px red; }
  25% { box-shadow: 0 0 10px orange; }
  50% { box-shadow: 0 0 10px yellow; }
  75% { box-shadow: 0 0 10px green; }
  100% { box-shadow: 0 0 10px blue; }
}

.button-70 {
  background-image: linear-gradient(to right, #738bd7, #697ec4);
  border: 0;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: Montserrat,sans-serif;
  font-size: .9em;
  margin: 5px;
  padding: 10px 15px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #5cff00,
    #000000,
    #ff0000,
    #ffff00,
    #ff0000,
    #000000,
    #5cff00
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}



@font-face {
  font-family: ABC Ginto Normal;
  font-style: normal;
  font-weight: 500;
  src: url(woff/1.woff) format("woff")
}

@font-face {
  font-family: ABC Ginto Normal;
  font-style: medium;
  font-weight: 600;
  src: url(woff/2.woff) format("woff")
}

@font-face {
  font-family: ABC Ginto Normal;
  font-style: bold;
  font-weight: 700;
  src: url(woff/3.woff) format("woff")
}

* {
  box-sizing: border-box;
}


.wrap {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  color: #000;
}

.name--header {
  background: #3999ac;
  font-size: 200%;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 0.3rem solid #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  justify-content: space-between;
}

.name--header .name {
  font-weight: 500;
}

.name--header .discord {
  font-size: 50%;
}

.name--header .discord a {
  color: white;
  text-decoration: none;
  outline: none;
}

.channels {
  margin: 1rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  display: block;
}

.channels--header {
  font-size: 150%;
  font-weight: 500;
  color: #fff;
  padding: 1rem;
  background: linear-gradient(to top, #40aabf 0%, #60ffff 100%);
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.channels--body {
  background: #222;
  margin: 0;
  padding: 1rem;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.channel--name {
  margin-top: 12px;
  color: #FFFFFF;
}
.channel--namewhite {
  color: #8a8e94;
}

.users {
  margin: 0;
  height: auto;
  width: 40em;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10%);
}

.users--header {
  font-size: 150%;
  font-weight: 500;
  background: #5865F2;
  color: #fff;
  padding: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'ABC Ginto Normal';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: opacity 0.55s ease-in-out;
  cursor: pointer;
}

.logo:hover {
  opacity: 0.7;
}

.users--body {

  height: auto;
  padding: 20px;

  background: rgba(32, 34, 37, 1);
  backdrop-filter: blur(50px);
}
.users--bodywhite  {
  background-color: #000;
}

.user {
  flex-flow: row wrap;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin: 12px 0;
}

.user--image {
  width: 32px;
  border-radius: 100%;
  user-select: none;
}

.user .username {

  position: relative;
}

.username {
  font-family: 'ABC Ginto Normal';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  /* identical to box height */


  color: #8A8E94;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}

.privatetext {
  margin-top: 0;
  font-size: 18px;
  color: #FFFFFF;
  white-space: nowrap;
  flex: 1;
}



.user .bot--tag {
  order: 4;
  font-size: 50%;
  background: #7289da;
  padding: 0.2rem;
  border-radius: 0.1rem;
  user-select: none;
  cursor: default;
}

.user--status {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.status--online {
  background: #338f50;
}
.status--onlinewhite {
  background: #3ba55d;
}

.status--idle {
  background: #aa7212;
}
.status--idlewhite {
  background: #faa81a;
}

.status--dnd {
  background: #d83c3e;
}
.status--dndwhite {
  background: #ed4245;
}

.image--wrap {
  background: rgba(0, 0, 0, 0);
  position: relative;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  margin-right: 4px;
}

.logo--wrap {
  background: rgba(0, 0, 0, 0);
  position: relative;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  margin-right: 4px;
}


.user--game {
  font-size: 14px;
  text-align: right;
  color: #4f545c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  flex: 1;
}
.user--gamewhite {
  color: #8a8e94;
  opacity: .5;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.memberstop {
  font-family: 'ABC Ginto Normal';
  font-size: 14px;
  color: #8A8E94;
  margin: 0px;
  margin-bottom: 6px;
}

.container {
  background: rgba(32, 34, 37, 0.5);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(50px);
  border-radius: 0px 0px 10px 10px;
}

.footer {
  box-shadow: 0 -1px 18px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .2);
  background-color: #5865F2;
  padding: 6px 6px 6px 20px;
  min-height: 30px;

  border-radius: 0px 0px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;

}
.footerwhite {
  background-color: #fff;
}

.footer p {
  margin: 0;
  color: #8a8e94;
  opacity: .5;
  font-size: 14px;
  display: inline-block;
  font-weight: 500;
  flex: 1;
}
.footerwhite p {
  color: #000000;
  opacity: .7;
}



{


.joinbuttonwhite {
  background: #fff;
  opacity: 0.7;
}

.joinbutton:hover {
  opacity: 0.6;
}

.joinbutton a {
  color: #FFFFFF;
  text-decoration: none;
}
.joinbuttonwhite a {
  color: #000000;
}

.channeltitle {
  margin-top: 0;
  color: #FF0000;
  font-size: 24px;
  margin-bottom: 16px;
}



.channel--name:first-child {
  margin-top: 0;
}

.channel--name:last-child {
  margin-bottom: 30px;
}

.user--mute {
  width: 32px;
  height: 32px;
  margin-left: 8px;
  margin-left: auto;
}

.user--deaf {
  width: 32px;
  height: 32px;
  margin-left: 8px;
  margin-left: auto;
}

.user--mute+.user--deaf {
  margin-left: 8px;
}

.servername {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
.channelstop {
  font-family: 'ABC Ginto Normal';
  font-size: 14px;
  color: #8A8E94;
  margin: 0px;
  margin-bottom: 12px;
}
.countdebug {
  text-align: right;
  line-height: 1;
}
::-webkit-scrollbar {
  width: 10px
}

::-webkit-scrollbar-thumb {
  background-color: hsla(0, 0%, 100%, .1)
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track-piece {
  background-clip: padding-box;
  border: 3px solid transparent;
  border-radius: 5px
}

::-webkit-scrollbar-track-piece {
  background-color: transparent
}
::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-color);
}
