body {
  margin: 0 !important;
  overflow: hidden;
  font-family: "Roboto", sans-serif !important;
}

.hidden {
  display: none !important;
}

#game-canvas,
#hud-canvas {
  position: fixed;
}

div#server-select-wrapper {
  margin-top: 2vmin;
  width: 40vmin;
  height: 5vmin;
}

select#server-select,
#server-select-display {
  width: 40vmin;
  height: 5vmin;
  text-align: center;
  font-size: 2vmin;
  font-weight: 900;
  color: white;
  transition: background-color 0.3s;
  cursor: pointer;
}

.server-select {
  position: absolute;
}

div#server-select-display {
  box-shadow: 0 0 0 0.4vmin black;
  border: none;
  border-radius: 0.5vmin;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

div#server-select-shadow {
  width: 100%;
  height: 50%;
  transform: translateY(50%);
  transition: background-color 0.3s;
  border-radius: 0.5vmin;
  position: absolute;
}

div#server-select-text {
  position: absolute;
  text-align: center;
  width: 100%;
  text-shadow: -0.2vmin -0.2vmin 0 #000, 0 -0.2vmin 0 #000,
    0.2vmin -0.2vmin 0 #000, 0.2vmin 0 0 #000, 0.2vmin 0.2vmin 0 #000,
    0 0.2vmin 0 #000, -0.2vmin 0.2vmin 0 #000, -0.2vmin 0 0 #000;
}

canvas.settings-demo {
    border-radius: 0.5vmin;
    box-shadow: 0 0 0 0.4vmin #000000;
}

#not-signed-in-text.hide {
  opacity: 0;
  pointer-events: none;
}

#signed-in-text.hide {
  opacity: 0;
  pointer-events: none;
}

#account-text {
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 3vmin;
  height: 1vmin;
  left: auto;
  position: absolute;
  right: 7vmin;
  text-align: right;
  top: 0.5vmin;
  width: fit-content;
  text-shadow: -0.2vmin -0.2vmin 0 #000, 0 -0.2vmin 0 #000,
    0.2vmin -0.2vmin 0 #000, 0.2vmin 0 0 #000, 0.2vmin 0.2vmin 0 #000,
    0 0.2vmin 0 #000, -0.2vmin 0.2vmin 0 #000, -0.2vmin 0 0 #000;
}

div#not-signed-in-text {
  position: fixed;
  right: 7vmin;
  transition: opacity 0.5s;
}

div#signed-in-text {
  position: fixed;
  right: 7vmin;
  transition: opacity 0.5s;
}

#signed-in-star-counter > img {
  width: 4vmin;
  transform: translateY(-10%);
}

div#signed-in-star-counter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index:1;
}

.modal:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 5vmin rgba(0, 0, 0, 0.1);
  display: block;
  position: fixed;
  transition: opacity 0.5s;
}

.modal > div {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  border-radius: 0.5vmin;
  box-shadow: 0 0 0 0.4vmin black;
  padding-left: 3vmin;
  padding-right: 3vmin;
  padding-top: 2vmin;
  padding-bottom: 1vmin;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translate(0, -50%);
  transition: opacity 0.5s, transform 0.5s, height 0.5s;
}

.loading-icon {
  width: 3vmin;
  height: 3vmin;
  border: 0.5vmin white solid;
  border-top: 0.5vmin transparent solid;
  border-radius: 50%;
  left: calc(50% - 2vmin);
  position: relative;
  animation: rotate 1s infinite linear;
  transition: all 0.5s;
  margin: 0 !important;
}

.loading-icon.hide {
  width: 0;
  height: 0;
  opacity: 0;
  left: calc(50% - 0.5vmin);
}

.modal-title {
  color: white;
  text-align: center;
  font-family: "Roboto", sans-serif;
  margin: 0.5vmin;
}

h1 {
  font-size: 3.5vmin;
}

h2 {
  font-size: 2vmin;
  line-height: 2vmin;
}

h3 {
  margin-bottom: 0.5vmin;
  margin-top: 1.5vmin;
}

.modal-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2vmin;
  text-align: center;
  padding: 0;
  padding-left: 1vmin;
  padding-right: 1vmin;
  max-height: 60vh;
  overflow: auto;
}

p.modal-text {
  margin-top: 0 !important;
  margin-bottom: 0.5vmin !important;
}

p#changelog-text {
  text-align: left;
  line-height: 1.5;
}

button.modal-button {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.4vmin;
  box-shadow: 0 0 0 0.4vmin black;
  border: none;
  outline: none;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-size: 1.8vmin;
  font-weight: 900;
  margin: 0.5vmin;
  margin-left: 1vmin;
  margin-right: 1vmin;
  padding: 0.6vmin;
  padding-left: 1vmin;
  padding-right: 1vmin;
  height: auto;
  transition: background 0.25s;
}

button.modal-button:hover {
  background: rgba(60, 60, 60, 0.5);
  cursor: pointer;
}

.modal-flex {
    display: flex;
    gap: 2vmin;
}

.modal-button>img {
    width: 5vmin;
    height: 5vmin;
    margin-right: 1vmin;
}

.modal-button {
    display: flex;
    align-items: center;
}

div.show-password {
  text-align: center;
}

label.setting-text {
  font-size: 2vmin;
}

.modal > div * {
  margin-bottom: 1vmin;
  margin-top: 0.5vmin;
}

.modal > div > hr {
  border: 0;
  height: 1vmin;
  width: 100%;
  border-top: 0.2vmin solid #ffffff;
}

.modal > div > div > div > hr {
  border: 0;
  height: 1vmin;
  width: 100%;
  border-top: 0.2vmin solid #ffffff;
}

.modal-button-organize {
  display: flex;
  justify-content: center;
  margin: 0 !important;
}

.modal.hide > div {
    transform: translate(0, -150vh);
    opacity: 0;
}

.modal.hide:before {
  opacity: 0;
  pointer-events: none;
}

.modal.hide {
  pointer-events: none;
}

input#developer-token {
  -webkit-text-security: disc;
}

input.modal-input {
  word-wrap: break-word;
  background-color: #0f0f0fc0;
  border: none;
  border-radius: 0.5vmin;
  box-shadow: 0 0 0 0.4vmin #000;
  color: #fff;
  font-family: Roboto;
  font-size: 1.5vmin;
  font-weight: 400;
  outline: none;
  text-align: left;
  padding: 0.5vmin;
}

.large-input {
  font-size: 2vmin !important;
  height: 3.9vmin !important;
  width: 30vmin !important;
  margin-bottom: 0.5vmin !important;
}

div#developer-settings-scroll {
  color: white;
  font-size: 2vmin;
  padding: 1vmin;
  max-height: 60vh;
  overflow: auto;
}

#button-edit {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 5vmin;
  border-radius: 0.5vmin;
  border: none;
  box-shadow: 0 0 0 0.4vmin black;
  margin: 0.5vmin;
  background: #00b0da;
  padding: 0;
  outline: none;
  transform-origin: 0 100%;
}

#button-edit:hover {
  box-shadow: inset 0 0 0 10em hsla(0, 0%, 100%, 0.3), 0 0 0 0.4vmin #000;
}

#button-edit > img {
  width: 5vmin;
}

#drop-background.hide {
  opacity: 0;
}

#drop-background {
  opacity: 0.5;
  background-color: #000000;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
  pointer-events: none;
}

#gamemode-selector-canvas {
  width: 40vmin;
  margin-top: 1vmin;
  background: black;
  box-shadow: 0 0 0 0.5vmin #000000;
  border-radius: 0.5vmin;
}

#main-menu-wrapper {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#gamemode-text {
  color: white;
  font-size: 5.5vmin;
  text-align: center;
  font-weight: 900;
  -webkit-text-stroke: black;
  -webkit-text-stroke-width: 0.3vmin;
  user-select: none;
}

div#play-menu {
  background: #ffffff;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  display: flex;
  flex-direction: row;
  padding: 0.3vmin;
  top: 2vmin;
  position: relative;
  transition: opacity 0.5s;
}

div#play-menu.hide {
  opacity: 0;
  pointer-events: none;
}

div#play-as-dev-menu.hide {
  opacity: 0;
  pointer-events: none;
}

div#play-as-dev-menu {
  background: #ffffff;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  display: flex;
  flex-direction: row;
  padding: 0.3vmin;
  top: 2vmin;
  position: relative;
  transition: opacity 0.5s;
  margin-top: 1vmin;
}

button#play-as-dev-button {
  background-color: #38b764;
  border: none;
  height: 3vmin;
  margin-left: 0.5vmin;
  padding: 0;
  outline: none;
  padding-left: 0.5vmin;
  padding-right: 0.5vmin;
  color: white;
  font-size: 2vmin;
  font-weight: 800;
  border-radius: 0.5vmin;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.2s ease;
}

#dev-settings {
  width: 3vmin;
  background: none;
  border: none;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
}

#dev-settings > img {
  width: 3vmin;
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

div#connecting-text {
  color: white;
  font-size: 6vmin;
  text-align: center;
  font-weight: 900;
  user-select: none;
  position: fixed;
  bottom: 2vmin;
  text-shadow: -0.3vmin -0.3vmin 0 #000, 0 -0.3vmin 0 #000,
    0.3vmin -0.3vmin 0 #000, 0.3vmin 0 0 #000, 0.3vmin 0.3vmin 0 #000,
    0 0.3vmin 0 #000, -0.3vmin 0.3vmin 0 #000, -0.3vmin 0 0 #000;
  transition: opacity 0.5s;
  pointer-events: none;
}

div#connecting-text.hide {
  opacity: 0;
}

input#display-name-input {
  border: none;
  height: 5vmin;
  font-size: 3vmin;
  font-weight: 800;
  width: 31vmin;
  background-color: rgba(255, 0, 0, 0);
  padding-left: 1vmin;
  font-family: "Roboto", sans-serif;
  outline: none;
}

button#play-button {
  background-color: #38b764;
  border: none;
  height: 5vmin;
  margin-left: 0.5vmin;
  padding: 0;
  outline: none;
  padding-left: 0.5vmin;
  padding-right: 0.5vmin;
  color: white;
  font-size: 3vmin;
  font-weight: 800;
  border-radius: 0.5vmin;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

button#play-button:hover {
  background-color: #48f083;
}

button#play-button.disabled {
  background-color: grey;
  color: #cccccc;
}

button#play-as-dev-button:hover {
  background-color: #48f083;
}

button#play-as-dev-button.disabled {
  background-color: grey;
  color: #cccccc;
}

#subtitle,
#title {
  -webkit-text-stroke-width: 0.3vmin;
  -webkit-text-stroke-color: #000000;
  align-items: center;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  height: 5vmin;
  left: 50%;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

#title {
  font-size: 8vmin;
  top: 3vmin;
}

#subtitle {
  font-size: 4vmin;
  top: 12vmin;
  transition: opacity 0.5s, top 0.5s;
}
#subtitle.hide {
  opacity: 0;
}

#main-menu {
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
}


#profile-page {
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
}

.profile-button-arrangement {
  position: fixed;
  top: 0;
  right: 0;
  margin-right: 2vmin;
  margin-top: 1vmin;
  display: flex;
  flex-direction: row-reverse;
}

.profile-button {
  color: black;
  border: none;
  background: white;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  font-size: 2.5vmin;
  border-radius: 0.5vmin;
  box-shadow: 0 0 0 0.4vmin black;
  padding: 0.5vmin;
  padding-left: 1vmin;
  padding-right: 1vmin;
  cursor: pointer;
  margin: 0.5vmin;
}

.profile-button:hover {
  background: #dddddd;
}

#profile-username {
  align-items: center;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-shadow: -.3vmin -.3vmin 0 #000,0 -.3vmin 0 #000,.3vmin -.3vmin 0 #000,.3vmin 0 0 #000,.3vmin .3vmin 0 #000,0 .3vmin 0 #000,-.3vmin .3vmin 0 #000,-.3vmin 0 0 #000;
  margin: 0;
  margin-top: 3vmin;
}

#profile-username {
  font-size: 6vmin;
}

#profile-page-profile-star-counter > div {
  font-weight: 700;
  display: inline;
  position: absolute;
  color: #ffffff;
  font-size: 3.5vmin;
  text-shadow: -.3vmin -.3vmin 0 #000,0 -.3vmin 0 #000,.3vmin -.3vmin 0 #000,.3vmin 0 0 #000,.3vmin .3vmin 0 #000,0 .3vmin 0 #000,-.3vmin .3vmin 0 #000,-.3vmin 0 0 #000;
}

#profile-page-profile-star-counter > img {
  transform: translateY(-1.1vmin);
  width: 5.5vmin;
}

#profile-page-profile-icon {
  margin: 2vmin;
  width: 15vmin;
  height: 15vmin;
}

.top-profile-content {
    display: flex;
    flex-direction: row;
}

div#profile-page-arrangement {
    display: flex;
    flex-direction: column;
}

.profile-text {
    text-shadow: -.3vmin -.3vmin 0 #000,0 -.3vmin 0 #000,.3vmin -.3vmin 0 #000,.3vmin 0 0 #000,.3vmin .3vmin 0 #000,0 .3vmin 0 #000,-.3vmin .3vmin 0 #000,-.3vmin 0 0 #000;
    color: white;
    font-size: 2vmin;
    font-weight: 900;
    padding-left: 2vmin;
}

#profile-page>hr {
    border-radius: .5vmin;
    box-shadow: 0 0 0 .3vmin #000;
    margin-bottom: 1vmin;
    margin-top: 1vmin;
    width: calc(100% - 4vmin);
    border: white solid 0.1vmin;
}

#profile-statistics {
    display: flex;
    width: 100%;
    justify-content: center;
}

#profile-statistics>div {
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: -.3vmin -.3vmin 0 #000,0 -.3vmin 0 #000,.3vmin -.3vmin 0 #000,.3vmin 0 0 #000,.3vmin .3vmin 0 #000,0 .3vmin 0 #000,-.3vmin .3vmin 0 #000,-.3vmin 0 0 #000;
    font-size: 3vmin;
    font-weight: 900;
    font-family: 'Roboto',sans-serif;
}

#profile-statistics>div>div {
    text-align: center;
    padding: 0!important;
}

div#profile-achievements-list {
    color: white;
    text-shadow: -.3vmin -.3vmin 0 #000, 0 -.3vmin 0 #000, .3vmin -.3vmin 0 #000, .3vmin 0 0 #000, .3vmin .3vmin 0 #000, 0 .3vmin 0 #000, -.3vmin .3vmin 0 #000, -.3vmin 0 0 #000;
}

div#profile-achievement-text {
    margin-left: 2vmin;
    font-size: 4vmin;
    font-weight: 900;
    font-family: 'Roboto',sans-serif;
}

div#profile-achievement-scroll {
    max-height: calc(100% - 42vmin);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    overflow-y: scroll;
    margin-top: 2vmin;
}

.modal>div textarea {
    background-color: rgba(0, 0, 0, .5);
    border-radius: .5vmin;
    border-style: none;
    box-shadow: 0 0 0 .4vmin #000;
    color: #fff;
    font-family: Roboto;
    font-size: 1.5vmin;
    font-weight: 400;
    padding: .5vmin;
    transition: box-shadow .5s;
}

textarea {
    resize: none;
    outline: none;
}

#profile-screen-search {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: center;
    width: 100%
}

#profile-screen-search-bar {
    background-color: #00000075;
    border-radius: .4vmin;
    box-shadow: 0 0 0 .4vmin #000;
    height: 4vmin;
    margin-top: 0.5vmin;
    margin-right: 1vmin;
    width: fit-content;
}

#profile-screen-search-input {
    background-color: transparent;
    border: none;
    color: #fff;
    font-family: Roboto;
    font-size: 2.5vmin;
    font-weight: 700;
    height: 4vmin;
    padding: 0 0 0 1vmin;
    vertical-align: bottom;
    width: 30vmin
}

#profile-screen-search-button {
    box-shadow: 0 0 0 .4vmin #000;
    border-radius: 0.4vmin;
    height: 4vmin;
    padding: 0;
    text-align: center;
    width: 4vmin;
}

#profile-screen-search-button>img {
    width: 3vmin
}

#profile-screen-search-content {
    background-color: rgba(0,0,0,.79);
    border-radius: .5vmin;
    color: #fff;
    font-size: 2.5vmin;
    font-weight: 700;
    opacity: 1;
    position: relative;
    text-align: center;
    transition: opacity .2s;
    width: 30vmin
}

#profile-screen-search-content>hr {
    border-radius: .15vmin;
    border-top: .3vmin solid #fff;
    color: #fff;
    height: 0;
    margin: 0 0 0 1vmin;
    opacity: .5;
    transition: height .2s;
    width: calc(100% - 2vmin)
}

.profile-screen-search-result {
    cursor: pointer;
    display: flex;
    font-weight: 400;
    height: 8vmin;
    padding: 1vmin;
    transition: height .2s
}

.profile-screen-search-result>* {
    pointer-events: none
}

#profile-screen-search-content.hide {
    opacity: 0;
    pointer-events: none;
    user-select: none
}

#profile-screen-search-content.hide>.profile-screen-search-result,#profile-screen-search-content.hide>hr {
    height: 0
}

.profile-screen-search-result>.icon {
    border-radius: 50%;
    height: 6vmin;
    width: 6vmin
}

.profile-screen-search-result>div>.result-name {
    font-size: 2.5vmin;
    height: 3.8vmin;
    line-height: 3.8vmin;
    margin-left: 1vmin;
    margin-top: -.2vmin;
    text-align: left;
    white-space: nowrap;
    width: 21vmin
}

.profile-screen-search-result>div>.result-stars {
    display: flex;
    margin-left: 1vmin;
    margin-top: -.5vmin
}

.profile-screen-search-result>div>.result-stars>img {
    height: 2.3vmin;
    margin-top: .2vmin;
    width: 2.3vmin
}

.profile-screen-search-result>div>.result-stars>div {
    font-size: 2vmin;
    margin-left: .5vmin
}

img#schicon {
    border-radius: 50%;
}

div#result-name1 {
    margin-left: 1vmin;
    margin-top: .5vmin;
    font-weight: 900;
}

div#profile-page-loading-icon {
    width: 15vmin;
    height: 15vmin;
    position: absolute;
    margin: 2vmin;
    background: grey;
    border-radius: 50%;
    box-shadow: 0 0 0 .4vmin black;
}

#profile-page-profile-icon {
    margin: 2vmin;
    width: 15vmin;
    height: 15vmin;
    z-index: 1;
    border-radius:50%;
}

.achievement-canvas {
    width: 50vmin;
    height: 16.66vmin;
    border-radius: 1vmin;
    box-shadow: 0 0 0 .5vmin black;
    margin: 1vmin;
}

#death-screen {
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 1s, top 1s ease;
  line-height: 3.7vmin;
  justify-content: center;
}
#death-screen.hide {
  top: -100%;
  opacity: 0;
}

canvas#death-screen-canvas {
  width: 40vmin;
}

#you-died-title {
  font-size: 6vmin !important;
  margin-bottom: 3vmin !important;
}

#death-screen > div {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2.5vmin;
  margin: 1vmin;
  text-shadow: -0.3vmin -0.3vmin 0 #000, 0 -0.3vmin 0 #000,
    0.3vmin -0.3vmin 0 #000, 0.3vmin 0 0 #000, 0.3vmin 0.3vmin 0 #000,
    0 0.3vmin 0 #000, -0.3vmin 0.3vmin 0 #000, -0.3vmin 0 0 #000;
}

.death-screen-arrangement {
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
}

div#death-screen-status {
    width: calc(100% - 5vmin);
    height: calc(100% - 10vmin);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 .4vmin black;
    border: none;
    border-radius: .5vmin;
    padding: 3vmin;
    text-shadow: none;
}

.death-screen-stats {
    padding: 2vmin;
    max-width: 50vw;
}

div#death-screen-status-section {
    height: 6vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}

.death-screen-status-class {
    width: 6vmin;
    height: 6vmin;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 .4vmin black;
    border-radius: 50%;
    font-size: 1.6vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5vmin;
}

.death-screen-title {
    font-size: 4.25vmin;
}

.death-screen-basics {
    max-width: 50vw;
}

div#death-screen-status-scroll {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    transform: translateX(0%);
    transition: transform 0.5s;
}

.death-screen-status-data {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left;
    min-width: 100%;
}

.death-screen-status-data>p {
    margin: 0;
}

button#continue-button {
  color: black;
  border: none;
  background: white;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2.5vmin;
  padding: 0.5vmin 1vmin;
  box-shadow: 0 0 0 0.4vmin black;
  border-radius: 0.5vmin;
  margin-top: 3vmin;
  margin-bottom: 4vmin;
  cursor: pointer;
}

#changelog {
  text-shadow: -0.2vmin -0.2vmin 0 #000, 0 -0.2vmin 0 #000,
    0.2vmin -0.2vmin 0 #000, 0.2vmin 0 0 #000, 0.2vmin 0.2vmin 0 #000,
    0 0.2vmin 0 #000, -0.2vmin 0.2vmin 0 #000, -0.2vmin 0 0 #000;
  position: fixed;
  left: 3vmin;
  top: 3vmin;
  color: white;
  font-weight: 800;
  width: 30vw;
  font-size: 2vmin;
  line-height: 1.3;
}
#changelog > p {
  margin: 0px;
}
#changelog > p > p {
  margin: 0px;
}

div#changelog-text {
  line-height: 3vmin;
  text-align: left;
  width: 70vw;
  height: 70vh;
}

#changelog-text > p {
    margin: 0;
}

#debug-mode {
  position: fixed;
  color: white;
  top: 20%;
  margin: 2vmin;
  text-shadow: -0.2vmin -0.2vmin 0 #000, 0 -0.2vmin 0 #000,
    0.2vmin -0.2vmin 0 #000, 0.2vmin 0 0 #000, 0.2vmin 0.2vmin 0 #000,
    0 0.2vmin 0 #000, -0.2vmin 0.2vmin 0 #000, -0.2vmin 0 0 #000,
    -0.1vmin -0.1vmin 0 #000, 0 -0.1vmin 0 #000, 0.1vmin -0.1vmin 0 #000,
    0.1vmin 0 0 #000, 0.1vmin 0.1vmin 0 #000, 0 0.1vmin 0 #000,
    -0.1vmin 0.1vmin 0 #000, -0.1vmin 0 0 #000;
  font-weight: 900;
  font-size: 1.2vmin;
  line-height: 1.5;
}

#debug-mode.hide {
  display: none;
}

#learn-more-server {
  width: 3vmin;
  height: 3vmin;
  position: absolute;
  background: cyan;
  box-shadow: black 0 0 0 0.5vmin;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 3vmin;
  right: -1vmin;
  top: 6vmin;
  text-shadow: -0.2vmin -0.2vmin 0 #000, 0 -0.2vmin 0 #000,
    0.2vmin -0.2vmin 0 #000, 0.2vmin 0 0 #000, 0.2vmin 0.2vmin 0 #000,
    0 0.2vmin 0 #000, -0.2vmin 0.2vmin 0 #000, -0.2vmin 0 0 #000;
  transform: scale(0.8);
  transition: transform 0.3s, background 0.3s;
}

#learn-more-server.warning {
  animation: warning 5s infinite;
}

@keyframes warning {
  0% {
    transform: rotate(0deg);
  }
  4% {
    transform: rotate(10deg) scale(1.1);
  }
  6% {
    transform: rotate(-10deg) scale(1.1);
  }
  8% {
    transform: rotate(10deg) scale(1.1);
  }
  10% {
    transform: rotate(-10deg) scale(1.1);
  }
  12% {
    transform: rotate(0deg);
  }
  13% {
    transform: unset;
  }
}

#learn-more-server:hover {
  transform: scale(1);
}

#learn-more-server > * {
  top: -0.1vmin;
  position: relative;
}

#learn-more-server:hover ~ #learn-more {
  opacity: 1;
}

div#learn-more {
  background: #000000aa;
  position: absolute;
  padding: 0.5vmin;
  color: white;
  box-shadow: black 0 0 0 0.5vmin;
  border-radius: 0.3vmin;
  left: 42vmin;
  top: -1vmin;
  min-width: 22vw;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

div#chat {
  top: 29.5%;
  right: 0;
  position: fixed;
  margin-right: 1vmin;
  display: flex;
}

input#chat-input {
  color: white;
  background: #0f0f0fc0;
  border: none;
  font-size: 2.1vmin;
  font-family: Roboto;
  padding: 0.3vmin;
  width: 25.5vmin;
  height: 3.9vmin;
  box-shadow: 0 0 0 0.4vmin black;
  border-radius: 0.5vmin;
  outline: none;
  user-select: none;
  overflow: visible;
  transform-origin: 100% 0;
}

div#bottom-left-buttons {
  bottom: 0;
  left: 0;
  position: fixed;
}

div#top-right-buttons {
  top: 0;
  right: 0;
  position: fixed;
}

button#button-discord {
  width: 5vmin;
  height: 5vmin;
  background: #5865f2;
  border: none;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  padding: 0;
  outline: none;
  margin: 0.5vmin;
}

button#button-discord-login {
  width: 5vmin;
  height: 5vmin;
  background: #5865f2;
  border: none;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  padding: 0;
  outline: none;
  margin: 0.5vmin;
}

button#button-settings {
  width: 5vmin;
  height: 5vmin;
  background: #888888;
  border: none;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  padding: 0;
  outline: none;
  margin: 0.5vmin;
}

button#button-account {
  width: 5vmin;
  height: 5vmin;
  background: #0092c3;
  border: none;
  box-shadow: black 0 0 0 0.4vmin;
  border-radius: 0.5vmin;
  padding: 0;
  position: absolute;
  top: 104%;
  left: 0%;
  outline: none;
  margin: 0.5vmin;
}

div#settings-scroll {
  color: white;
  font-size: 2vmin;
  padding: 1vmin;
  max-height: 60vh;
  overflow: auto;
  min-width: 45vmin;
}

label {
  vertical-align: middle;
  line-height: 2;
}

input {
  outline: none;
}

div#settings-scroll > div:has(label) {
  text-align: center;
  margin-top: 2vmin;
}

.slide,
.slider {
  width: 100% !important;
}

.slide {
  appearance: none;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4vmin !important;
  box-shadow: none !important;
  height: 3vmin !important;
  padding: 0.5vmin;
}
.slide::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2vmin;
  height: 2vmin;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

input:checked + .switch-button {
  background-color: #38b764;
}

.switch-button:before {
  background-color: #fff;
  border-radius: 50%;
  bottom: 0.5vmin;
  content: "";
  height: 2vmin;
  left: 0.5vmin;
  position: absolute;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform -ms-transform 0.4s 0.4s;
  width: 2vmin;
}

input:checked + .switch-button:before {
  -webkit-transform: translateX(4vmin);
  -ms-transform: translateX(4vmin);
  transform: translateX(5vmin);
}
label.switch {
  display: inline-block;
  height: 3vmin;
  position: relative;
  width: 8vmin;
  margin-bottom: 0.5vmin;
  margin-top: 0.5vmin;
}

span.switch-button {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4vmin;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
  width: 100%;
  height: 100%;
  left: 0;
  transform: translateY(-15%);
}

.switch > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

button > img {
  width: 5vmin;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a {
  color: #00b0e1;
  text-decoration: none;
}

.tooltip {
  opacity: 0;
  position: absolute;
  color: white;
  font-weight: 700;
  font-size: 2vmin;
  background: #000;
  padding: 0 0.5vmin;
  border-radius: 0.5vmin;
  line-height: 3vmin;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.2s, left 0.2s, right 0.2s;
  font-family: "Roboto", sans-serif;
}

.tooltip-trigger > a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tooltip-trigger:hover {
  cursor: pointer;
}

#buttons > div > button:hover {
  box-shadow: inset 0 0 0 10em hsla(0, 0%, 100%, 0.3), 0 0 0 0.4vmin #000;
}

.tooltip-trigger:hover > .tooltip {
  opacity: 1;
}

.tooltip-trigger:hover > .tooltip.right {
  left: 1vmin;
}

.tooltip-trigger:hover > .tooltip.left {
  left: -1vmin;
}

.tooltip.right {
  left: 0;
  transform: translateX(6vmin);
}

.tooltip.left {
  left: 0;
  transform: translateX(-100%);
}

::placeholder {
  color: #b9b9b9;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #b9b9b9;
}

::-ms-input-placeholder {
  color: #b9b9b9;
}

::-webkit-scrollbar {
  width: 1vmin;
}

::-webkit-scrollbar-track {
  background: #00000000;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0.2vmin;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a1a1a;
}

noscript {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

noscript:before {
  content: "";
  position: absolute;
  background-repeat: repeat;
  background-size: 2vmin 2vmin;
  background-color: #111111;
  background-image: radial-gradient(
    circle at center,
    black 0.5vmin,
    transparent 0
  );
  width: 100%;
  height: 100%;
  animation: main-menu-animation 60s infinite linear;
  z-index: -1;
}
@keyframes main-menu-animation {
  from {
    background-position: -100% 0%;
  }
  to {
    background-position: 0% 0%;
  }
}
