html, body {
  overflow: hidden;
  font-family: 'Changa', sans-serif;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: var(--background);

  color: #fff;

  background-image: radial-gradient(circle, rgba(17,29,55,1) 0%, rgba(0,0,0,1) 100%);
  background-position: 400px 400px;

}


#layout {
  max-width: 1024px;
  margin: auto;

  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

#top-bar {
  background-color: #0008;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  font-size: 12px;
  color: #fff;
  padding: 4px 2px;
}

#main {
  position: relative;
  display: flex;
  height: 590px;
}


#right-panel {
  position: relative;
  overflow: auto;
  color: #fff;
}

#bottom-panel__content {

}


/* ================================= */

.chat-entry {
  display: flex;
}

.chat-entry__avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.chat-entry__avatar {
  background-size: cover;
  width: 100%;
  height: 100%;
}

/* ================================= */







.frame-00 {
    position: relative;
    box-sizing: border-box;
    border: 15px solid transparent;
    border-image-source: url("../images/ui/frame-00.png");;
    border-image-slice: 47;
    border-image-repeat: repeat;
    border-image-width: 28px;
}

#game-console {
  height: 600px;
  overflow: auto;
}

