#loading_icon{
  pointer-events: none;
  width: 60px;
  position: absolute;
  z-index: 999;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -10%);
}
@font-face {
  font-family: 'Mojangles';
  src: url('res/Mojangles.ttf'), format('truetype');
  font-weight: 100;
  font-style: normal;
}

@keyframes KFbackgroundTranslation {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -600vw 0;
    /* Mover más allá del viewport */
  }
}

body {
  font-family: 'Mojangles', monospace;
  background-color: rgb(20, 20, 20);
  margin: 0;
  overflow: hidden;
}

.logo {
  width: fit-content;
  color: white;
  position: fixed;
  left: 50%;
  top: 5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -10%);
}

.logo img {
  position: relative;
  width: 80ch;
  margin-bottom: -50px;
  max-width: 90vw;

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.logo p {
  font-size: 24px;
  text-align: center;
}

.background {
  background-repeat: repeat-x;
  background-size: auto 100vh;
  background-image: url("res/night.png");
  display: block;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  animation: KFbackgroundTranslation 300s linear infinite;
  filter: blur(5px);

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.centered_header {
  text-align: left;
  color: white;
  font-size: large;
}

a {
  color: rgb(39, 237, 255);
}
#debugIndicatorSize{
  color:white;
  font-size: larger;
  font-weight: 100;
}
.main_container, .downloads_page {
  display: block;
  position: relative;
  align-content: center;
  height: 50vh;
  /*border: 2px solid white; unuse*/
  position: absolute;

  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 500px;
}

button {
  position: relative;
  font-family: 'Mojangles';
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border: 2px solid white;
  background-color: rgba(20, 20, 20, 0.80);
  margin-top: 10px;
}

#button_big, #button_big_back {

  height: 50px;
  width: 100%;
  font-size: 22px;
}
#button_big_back img{
  position: relative;
  left: -35%;
  top: 5%;
}
button:hover {
  background-color: rgba(90, 90, 90, 20);
}

.main_button {
  width: 200px;
  align-content: center;
}
.main_button[disabled="true"]{
  color: black;
  background-color: rgb(50,50,50);
}
.discord-prompt {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.discord-prompt img {
  max-width: 200px;
  max-height: auto;

}
.discord-prompt img:hover{
  cursor: pointer;
  box-shadow: 10px 10px 10px rgba(47, 50, 224, 0.808);
}


.dialogOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: rgb(80,80,80);
  padding: 10px;
  border-radius: 5px;
  width: 90vw;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.modal pre{
  white-space: pre-wrap;
}
.close-btn {
  border: 2px solid gray;
  background-color: rgba(20, 20, 20, 20);
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}
#modal_title, #modal_message{
  color: white;
  font-weight: 100;
}

.bottommers{
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: absolute;
  z-index: 5;
  color: white;
  font-weight: 50;
  font-size: 16px;
  right: 0px;
  bottom: 0px;
}

.container p{
    color: #FFFFFF
}
