* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.ttf');
}
@font-face {
    font-family: 'Inter-Thick';
    src: url('fonts/Inter-Medium.ttf');
}
@font-face {
    font-family: 'Roboto Mono';
    src: url('fonts/RobotoMono-Light.ttf');
}
@font-face {
    font-family: 'PT';
    src: url('fonts/PTMono-Regular.ttf');
}

body {
    background: black;
    /* background-color: rgb(5, 5, 5); */
    /* background: url('./gfx/universe-6.png'); */
    /* 	animation: backgroundMove 5s linear infinite; */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /* overflow: hidden; */
/*     image-rendering: crisp-edges; */
}

#menu_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: calc(50vw - 50%);
    top: calc(50vh - 50%);
    border: 2px solid black;
    outline: none;
    opacity: 1;
    animation: zoom 1s ease-in;
    /* z-index:-1; */

/*     image-rendering: crisp-edges; */
}


.loading {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity:0; */
    animation: fade-in 1.5s ease-in-out;
    /* background: linear-gradient(rgb(255, 0, 0), rgb(0, 0, 0)); */
}

.loading h1{
    color: white;
    font-size: 3rem;
    text-shadow: 0px 0px 5px white;
    animation: zoom 1s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    text-shadow: 0px 0px 10px white;
    margin-bottom: 75px;
    
    /* padding: 25px; */
    /* margin-right: 10vw; */
    /* margin-top:600px; */
}

.loading-image {
    transform: scale(0.42);
    /* animation: scale-up 3s ease-in; */
}


/* @keyframes scale-up {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(2);
    }
} */

@keyframes zoom {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#play_evadesx {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5vw;
    height: 5vw;
    opacity: 1;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.4; */
    /* background: url('./gfx/tile-bg.png'); */
    /* background-size: 100vw 100vh; */
    /* filter: brightness(1.5) saturate(5); */
    /* z-index: -1; */
  }
  
.onMenu {
    /* background-image: url('./gfx/bg.png'); */
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-position: center;
    /* 	transition: background-image 0.25s linear; */
}

@keyframes backgroundMove {
    0% {
        background-position: center bottom;
    }
    50% {
        background-position: center top;
    }
    100% {
        background-position: center bottom;
    }
}

/*  position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url('/path/to/image.png');
    opacity: .4;
    content: "";
    z-index: -1;
 */
.overlay {
    position: absolute;
    left: -50vw;
    top: -50vh;
    width: 200vw;
    height: 200vh;
    z-index: 50000;
    user-select: none;
    /* background: black; */
    /* background: #323645;url('./gfx/evade-x-uni-1.png') no-repeat center center; */
    background: rgb(58, 33, 83);
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    /* background-size: 25vw 25vw; */
}

.fade-out {
    animation: fade-out 0s ease-in-out;
    /* color: red; */
    color: purple;
    background-color: rgb(37, 18, 93);
    /* background-color: rgb(78, 0, 0); */
    /* transform: rotate(-45deg); */
}

.fade-in {
    animation: fade-in 0s ease-in;
}

.online {
    position: absolute;
    font-size: 1.2rem;
    top: 125px;
}

.leaderboard {
    position: absolute;
    /* right: 50px; */
    /* top: 50px; */
    /* width:  */
    width: 500px;
    left: 10px;

    display: flex;
    justify-content: right;
    align-items: right;
    user-select: none;
    z-index: 2;
   
}



.leaderboard-players span {
    font-size: 0.9rem;
    width: 300px;
    /* width: 300px; */
    /* left: 90%; */
    display: inline-block;
    /* height: 50px; */
    margin: 7px;
    /* z-index: 1000; */
    /* height: 2vh; */
    /* opacity: 0.8; */
    /* opacity: 0; */
}

.leaderboard-players {
    /* background: rgba(0,0,0,0.25); */
}

@keyframes fade-out {
    0% {
        opacity: 1;
        /* background-size: 30vw 30vw; */
    }
    100% {
        opacity: 0;
        /* background-size: 0vw 0vw; */
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        /* background-size: 30vw 30vw; */
    }
    100% {
        opacity: 1;
        /* background-size: 30vw 30vw; */
    }
}

#shootingStarLand, #shootingStarCanvas {
    position: absolute;
    z-index: -1;
    left:0;
    top:0;
}

.google-auto-placed {
    position: absolute;
    bottom: 75px;
}

.editorFrame {
    width: 100%;
    height: 100%;
    position: absolute;
    right:0;
    bottom: 0;
    border: 2px solid black;
    outline: none;
    opacity: 1;
    z-index:-10000;
/*     image-rendering: crisp-edges; */
}

#iframeplaceholder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    width: 225%;
    /* background: rgba(0, 0, 0, 0.5); */
    height:50vh;
    /* position: relative; */
}



.menu-buttons {
    margin-top:50px;
    display: flex;
    /* filter: hue-rotate(279deg) !important; */
}
.menu-buttons button, .loginSuccess button {
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.75rem;
}


.passwordDiv {
    display: flex;
    flex-direction: row;
}


.loginSuccess,
.success-buttons {
    display: flex;
    /* position: absolute; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showPasswordButton {
    width: 35px;
    margin: 0px;
    position: relative;
    left: -5px;
}

.success-buttons {
    margin-top: 10px;
}

.success-buttons button {
    margin: 5px;
    width: 75px;
}

.loginForm button {
    margin: 15px;
    width: 50%;
    height: 50px;
    border: none;
    opacity: 0.8;
    transition: opacity 0.15s linear;
    outline: none;
    margin-bottom: 15px;
    /* border: none; */
}


.loginForm button:hover {
    opacity: 1;
}

.circle-dummy {
    background:black;
    width:90px;
    height: 90px;
    position: absolute;
    left:230px;
    top:-120px;
    border-radius:50%;
    /* z-index:-1; */
}
.play-button {
    padding: 10px;
}



.player-hat {
    position: absolute;
    left: 200px;
    top: -150px;
    width: 150px;
    height: 150px;
    background: rgba(0,0,0,0.5);
    outline: 10px solid black;
    border-radius: 50%;
}

.player-center {
    position: absolute;
    left: calc(50% - 75px);
    top: calc(50%+100);
    width: 300px;
    height: 300px;
    background: rgba(0,0,0,0.5);
    outline: 10px solid black;
    border-radius: 50%;
    z-index: -10;
}

.universe {
    position: relative;
    /* left: 200px;
    top: -150px; */
    /* left:0;top:0; */
    width: 112.5px;
    height: 112.5px;
    background: rgba(0,0,0,0.5);
    outline: 10px solid black;
    transition: outline 0s linear;
    /* transition: opacity 1s linear; */
    border-radius: 50%;
    margin: 10px;
    opacity: 1;
    transform: rotate(0deg);
    animation: spin 15s linear infinite;

    color: black;
    font-size: 5rem;
}

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

/* .universe-outline .open{
    outline: 10px solid white !important;
    /* box-shadow: 0px 0px 15px white; */
    /* box-shadow:  */
    /* opacity: 1; */
/* } */ 
.universe-outline {
    outline: 10px solid white !important;
    /* box-shadow: 0px 0px 15px white; */
    /* box-shadow:  */
    /* opacity: 1; */
}

.grecaptcha-badge {
    top: 0 !important;
}

.universe:hover {
    outline: 10px solid gray;
    /* opacity: 1; */
    cursor: pointer;
}

.open {
    outline: 10px solid #6047ff;
    /* border: 2px solid  */
}

.online-now {
    color: greenyellow !important;
    display: inline;
}



.universes {
    position: absolute;
    width: 100vw;
    height: 75px;
    top: -100px;
    z-index:-1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.logoutButton {
    /* padding: 5px; */
    position: relative !important;
    left: 325px !important;
    top: 87.5px !important;
    width: 150px !important;
    /* top: 300px !important;
    width: 525px !important; */
}

/* why are you looking in the styles.css file */

#play {
    position: relative !important;
    top: 125px !important;
    width: 80px !important;
    height: 40px !important;
    transform: scale(4);
    padding: 0;
    border: none;
    /* background: rgba(255, 255, 255,.5); */
    cursor: pointer;
    user-select: none;
    outline: none;
    font-size: 1rem !important;
    user-select: none;
    opacity: 1;
    animation: zoom 0.5s linear;
    /* color:hsla(0,50%,50%,1); */
    color: white;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.1s linear;
    /* color: white; */
    /* filter: hue-rotate(279deg) !important; */
    /* text-shadow:1px 1px rgb(255, 255, 255),
          -1px -1px rgb(255, 255, 255); */
    text-shadow: 0px 0px 7px white;
    box-shadow: rgb(119, 0, 255) 0px 0px 5px;
}

.uni {
    position: absolute;
    font-size: 0.4rem;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    color: rgb(179 113 255);
    text-shadow: 0px 0px 7px white;
}

.player {
   position: absolute;
    font-size: 0.4rem;
    top: calc(50% + 9px);
    color: white;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    text-shadow: 0 0 1px white;
}

.universe-req {
    border-radius: 0px;
    background: black;
    width: 250px;
    height: 75px;
    position: absolute;
    top: 250px;
    width: 500px;
    /* box-shadow: rgb(255 0 0) 0px 0px 50px; */
    box-shadow: gold 0px 0px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    animation: zoom 0.5s linear;
    user-select: none;
}

.server {
    border-radius: 0px;
    background: black;
    width: 250px;
    height: 75px;
    position: absolute;
    top: -25px;
    width: 500px;
    box-shadow: rgb(119, 0, 255)  0px 0px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    animation: zoom 0.5s linear;
    user-select: none;
    transform: scale(0.5);
}

#play:hover {
    box-shadow: rgb(119, 0, 255) 0px 0px 10px; 
    /* background: transparent !important;
    color: rgba(0,0,0,0);
    text-shadow: none; */ 
    /* opacity: 0 !important; */

}



canvas {
/* 	image-rendering: crisp-edges; */
    /* z-index: 1000; */
}

canvas,
.gui {
    position: absolute;
    left: 0;
    top: 0;
    
}

.music {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgb(27, 151, 213);
    padding: 10px;
    color: white;
    font-size: 1.25rem;
    outline: none;
    border: none;
}

.leaderboard-div {
    position: absolute;
    /* left: calc(1600px - 299px); */
    right: 0;
    transition: left 0.2s linear, opacity 0.2s linear;
    opacity: 0.75 !important;
    top: 0px;
    width: 300px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
    user-select: none;
    font-family: Inter-Thick;
}

.leaderboard-div:hover {
    opacity: 1 !important;
}

.hide {
    left: 100vw !important;
    opacity: 0;
}

.leaderboard-div::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.leaderboard-div::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.lb-group {
    /* background: rgba(255, 255, 255, 0.1); */
    /*background: rgb(55, 55, 55);*/
    background: transparent;
    padding: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin: 0px;
    /*min-width: 150px;*/
    width: 300px;
}

#login-a {
    text-decoration: none;
    padding: 2px;
    /* background: rgba(0, 0, 0, 1); */
    background: #5865f2;
    /* box-shadow: 0px 0px 10px 2px white; */
    font-size: 2rem;
    color: white;
    opacity:0.8;
    /* position: relative; */
    /* top: -10px; */
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#guest {
    text-decoration: none;
    padding: 2px;
    /* background: rgba(0, 0, 0, 1); */
    background: #7303fc;
    /* box-shadow: 0px 0px 10px 2px white; */
    font-size: 1.5rem;
    color: white;
    opacity: 0.75;
    transition: opacity 0.15s linear;
    /* position: relative; */
    /* top: -10px; */
    /* margin: 10px; */
    top: -1px;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px !important;
    position: absolute;
    top: calc(50% + 160px);
    left: calc(50% - 250px);
    margin:0;
}

#guest:hover {
    opacity: 1;
}

.lb-name {
    /* color: rgb(47, 250, 213); */
    /* filter: saturate(150%); */
    font-size: 0.85rem;
	
}



.lb-players {
    margin: 5px;
    font-size: 0.8rem;
    /* background: rgba(255, 255, 255, 0.12); */
    /* background: rgba(77, 77, 77, 0.7); */
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
	
	
}

.lb-players div {
    margin: 2px;
	cursor: pointer;
	background: transparent;
	padding: 0px;
	transition: background 0.1s linear, padding 0.1s linear;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lb-players .same-map:hover {
	background: rgba(0, 0, 0, 0.3);
	padding: 5px;
}

/* .leaderboard-players span:hover {
    background: rgba(255, 255, 255, 0.3);
	padding: 6px;
} */
.hidden {
    display: none !important;
}

.evades, .welcome {
    position: absolute;
    /* top: -15px; */
    top: calc(225px);
    font-size: 7rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    opacity: 1;
    animation: zoom 1.5s linear;
    /* color:hsla(0,50%,50%,1); */
    color: white;
    /* color: white; */
    filter: hue-rotate(279deg) !important;
    text-shadow:5px 5px rgb(255, 255, 255),
          -5px -5px hsla(0, 50%, 50%, 1);
    letter-spacing: 6px;
    text-align: center;
    z-index: 1000;
    /* animation-delay: 2s; */
    /* background-image: url(https://i1.sndcdn.com/artworks-Uii8SMJvNPxy8ePA-romBoQ-t500x500.jpg); */
}

.loginSuccess .evades {
    position: absolute;
    top: -10px;
}

.evades, .welcome {
    text-shadow: 0px 0px 15px black;
}
.welcome {
    font-size: 2.5rem !important;
    /* top: 25px; */
    top: calc(50vh - 255px);
}

.main-menu-ui{
    margin-left: 25vw;
}

.version {
    font-size: 2rem;
}

.nameInput {
    box-shadow: 0px 0px 10px 2px white;
    /* 	box-shadow:  0px 0px 15px white; */
    outline: none;
    border: none;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    font-size: 1.75rem;
    position: relative;
    width: 300px;
    height: 30px;
    top: 0px;
}

.nameInput::placeholder {
    color: white;
    /* 	opacity: 0.75; */
}

.credit {
    position: relative;
    top: -35px;
    font-size: 1.5rem;
    text-shadow: 0px 0px 2px white;
}

.menu,
.menu .main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* min-height: 100vh !important; */
    color: white;
    /* z-index: 10000; */
    /* background: transparent; */
    /* background: hsla(0, 5%, 5%, 1); */
    /* background: url('./gfx/X-galaxy.png'); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background-image: linear-gradient(to right top, hsla(0, 5%, 15%, 0.5), hsla(0, 5%, 5%, 1)); */
  
    /* opacity: 1 !important; */
}

/* .menu {
    background: rgba(0,0,0, 0.3) !important;
} */

.evade-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
    opacity:1;
    margin-top: 50px;
    padding: 75px;
    background: rgba(0,0,0,0);    
    /* width: 130%; */
    width: 100vw;
    /* border-radius: 27%; */
    /* border: 3px solid white; */
    /* animation: message-frames 2s ease 0.5s forwards; */
}

.evade-title button, .evade-title input, .loginSuccess {
    /* margin-top: 100px;  */
    /* position: relative; */
    /* top: -75px; */
} 

.loginSuccess {
    margin-top: 200px;
    z-index: 100;
    /* background: rgba(0,0,0, 0); */
}

.unblur {
    animation: unblurAnim 0.2s linear;
}

@keyframes unblurAnim {
    0% {
        filter: blur(5px);
    }
    100% {
        filter: blur(0px);
    }
}

.eanim {
    position: relative;

    /* animation: evadeAnim 0.6s ease-out; */
}

@keyframes evadeAnim {
    0% {
        left: -50vw;
    }
    100% {
        left: 0;
    }
}

.chatDiv {
    z-index: 100;
}

.chat {
    position: absolute;
    left: 0px;
    top: 301px;
    /* bottom: 0px; */
    z-index: 10000;
    width: 374px;
    height: 30px;
    transform-origin: center center;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    padding: 5px;
    /* direction: rtl; */
    /* text-align: center; */
    caret-color: white;
    /*background: rgba(129, 129, 129, 0.082);*/
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    font-family: Inter-Thick;
}

.chat-message {
    color: white;
    font-size: 0.9rem;
    background: transparent;
    padding: 1px;
    /* direction: ltr; */
    overflow-wrap: break-word;
    width: 100%;
}
.system-message {
    color: #c4c4c4;
    font-size: 0.9rem;
    background: transparent;
    padding: 1px;
    overflow-wrap: break-word; /*this doesnt work somehow*/
    width: 100%;
}

.command-message {
    font-size: 0.7rem;
}

.map-edit {
    z-index: 100;
}



.hat-select {
    position: absolute;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    background: rgba(0, 0, 0, 0);
    padding: 10px;
    width: 500px;
    height: 100px;
    display: flex;
    justify-content: center;
    top: calc(50% + 250px);
    left: calc(50% - 250px);
    border-radius: 5px;
}

.hat-select span {
    /* margin-bottom: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.volume-control {
    position: absolute;
    /* top: 10px;
    left: 10px; */
    /* z-index: 10000; */
    /* margin-bottom: 500px; */
    width: 250px;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 10px;
    top: calc(50% + 125px);
    left: calc(50% - 75px);
    /* background: #9600e7; */
    accent-color: #9600e7;
    opacity: 1;
    transition: opacity 0.15s linear;
    /* border-radius: 5px; */
}

.volume-control::-webkit-slider-runnable-track {
  background: #9600e7; /* Grey background */
  height: 10px;
  border-radius: 5px;
}


.hat-select div {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 5px; */
    /* width: 500px; */
    /* padding: 5px; */
}

.hat-select img {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}


.hat-selected {
    border-color: rgb(255, 255, 255);
    border-radius: 50%;
    border-style: solid;
    border-width: 5px;
    background-color: rgb(255, 255, 255) !important;
}



.map-input {
    position: absolute;
    left: 0px;
    top: 290px;
    width: 374px;
    height: 322px;
    line-height: 40px;
    transform-origin: center center;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    padding: 5px;
    margin: 2px;
    caret-color: white;
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    resize: none;
    word-break: break-all;
}

.peaceful {
    color: #6cd95b;
}
.moderate {
    color: #58ccb3;
}
.difficult {
    color: #0a77bf;
}
.hardcore {
    color: #3528e0;
}
.exhausting {
    color: #8248d4;
}
.relentless {
    color: #e32d8b;
}
@keyframes agonizingColor {
    0% {
        background-color: #ff0000;
    }
}
.agonizing {
    color: #ff5736;
    animation-name: agonizingColor;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes terrorizingColor {
    0% {
        background-color: #ff0000;
    }
}
.terrorizing {
    color: #fc3a3a;
    animation-name: terrorizingColor;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes cataclysmicColor {
    0% {
        background-color: #ff0000;
    }
}
.cataclysmic {
    color: #c95d5d;
    animation-name: cataclysmicColor;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.mention {
    /*color: #a84040;*/
    background-image: linear-gradient(
        90deg,
        rgba(255, 0, 0, 0.3),
        rgba(255, 0, 0, 0)
    );
    animation-name: terrorizingColor;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

.chat::placeholder {
    color: white;
    opacity: 1;
}

.text-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 1600px;
	height: 900px;
	filter: none !important;
	background: transparent;
	overflow: hidden;
}

.gamey-text {
	position: absolute;
	color: white;
	font-family: Inter-Thick;
	transform-origin: center;
 	transform: translateX(-50%) translateY(-50%);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 25px;
	min-height: 25px; 
	white-space: nowrap;
}

.game, .gui {
    cursor: cell;
    transition: filter 0.5s linear;
    filter: saturate(2);
}

button {
    user-select: none;
}

.chat-div {
    position: absolute;
    left: -1px;
    top: 0px;
    width: 375px;
    height: 301px;
    /* height: calc(100vh - 30px); */
    filter: none !important;
    background: rgba(141, 141, 141, 0.205);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    /* direction: rtl; */
    overflow-y: auto;
    padding: 2px;
    overflow-x: hidden;
    /* 	word-break: break-all; */
    font-family: Inter-Thick;
    transition: opacity 0.2s linear;
    opacity: 0.75 !important;
    /*
    /*background-image: url(https://i1.sndcdn.com/artworks-Uii8SMJvNPxy8ePA-romBoQ-t500x500.jpg);*/
    /*    opacity: 0.7; */
}

.higher-opacity {
    opacity: 1 !important;
}

.chat-div:hover {
    opacity: 1 !important;
}

.chat-filler {
    position: absolute;
    left: -1px;
    bottom: 0px;
    width: 375px;
    height: 30px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* .chat-div::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(0, 0, 0, 0.4);
}

.chat-div::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.8);
} */

.chat-div::-webkit-scrollbar {
  display: none;
}

.rainbow {
    animation: colorRotate 4s linear 0s infinite;
}

.vip-chat {
    color: gold;
}

.admin-chat {
    color: rgb(221, 255, 0);
}

.yt-chat {
    color: red;
}

.mod-chat {
    color: orange;
}



@keyframes colorRotate {
    0% {
        color: hsl(180, 100%, 50%);
    }
    50% {
        color: hsl(216, 100%, 50%);
    }
    100% {
        color: hsl(180, 100%, 50%);
    }
}
@keyframes bgColorRotate {
    0% {
        background-color: hsl(180, 100%, 50%);
    }
    50% {
        background-color: hsl(216, 100%, 50%);
    }
    100% {
        background-color: hsl(180, 100%, 50%);
    }
}

.bgColorRotate {
    animation: bgColorRotate 4s linear 0s infinite;
}

/*.credits {
    position: absolute;
    top: 60px;
    right: 60px;
    transform: translateX(-100%) translateY(-100%);
    width: 60px;
    height: 60px;
}*/
#play {
    /* background: #7303fc; */
    /* background: none !important; */
    background: rgb(0, 0, 0);
    /* border: 3px solid white; */
    /* border: 3px solid rgb(104, 64, 191) !important; */
    /* background: rgba(72, 0, 255, 0.4) !important; */
    color: white;
    opacity: 1;
    height: 100px;  
    cursor: pointer;
    /* font-size: 3rem; */
    transition: opacity 0.15s linear;
}



.registerButton, .loginButton {
    border: 3px solid rgb(104, 64, 191) !important;
    background: rgba(72, 0, 255, 0.4) !important;
}

.nameInput {
    width: 650px;
    padding: 10px;
    text-align: center;
    height: 75px;
    font-size: 3rem;
}

.loginForm input, .success-buttons button{
    width: 400px;
    height: 50px;
    margin: 15px;
    margin-top: -10px;
    margin-bottom: 0px;
    text-align: center;
    outline: none;
    opacity:1;
    color: white;
    font-size: 1.5rem;
    background-color: rgba(10, 10, 10, 0); 
    /* filter: hue-rotate(279deg) !important; */
    border: none;
    /* border: 1px solid gray; */
    box-shadow: none;
}

.playButton {
    padding: 10px;
    width: 800px;
    height: 100px;
    margin: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    /* color:hsla(0,50%,50%,1); */
    font-size: 3rem;
    text-align: center;
    outline: none;
    /* background-color: rgba(10, 10, 10, 0);  */
    background-color: rgba(10, 10, 10, 0);
    border: none;
    /* border: 1px solid gray; */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    position: absolute;
    opacity: 0.75;
    left: calc(50vw - 400px);
    top: calc(50vh + 150px);
    /* text-shadow: 0px 0px 15px #6047ff; */
    /* box-shadow: 0px 0px 200px #2200ff; */
    box-shadow: 0px 0px 200px #f0f0f0;
    /* background: #6047ff; */
    background: #848484; 

    user-select: none;
    filter: saturate(3) !important;
    /* background: linear-gradient(45deg, rgb(37, 18, 93)  0 50%, rgb(155, 6, 153) 50% 100%) !important; */
}
.playButton:hover {
    opacity: 1;
    filter: saturate(10) !important;
}

.loginForm {
    background-color: rgba(10, 10, 10, 0) !important;
    /* backgroun */
    background: none;
    width: 100vw !important; 
    height: 100vh !important;   
    /* border-radius: 27%; */
    /* border: 3px solid white; */
    /* margin-top: 0px; */
    /* top: -25px; */
    /* border-style: dashed; */
}

/* .loginForm::before, .evade-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  /* background: url('./gfx/evade-x-vip.png'); */
  /* z-index: -1;
}  */



.usernameInput {
    /* font-size: 2rem !important; */
    /* width: 1000px !important; */
    position: absolute !important;
    top: 250px !important;
    width: 525px !important;
}

.passwordInput {
    position: absolute !important;
    top: 312.5px !important;
    width: 525px !important;
    left: calc(50vw - 95px);
}

.matter-count{
    font-size: 1.5rem;
    color: white;
    opacity: 1;
    position: absolute;
    left: -300px;
    top: 112.5px;
    /* top: 50%;
    left: calc(50vw - 100px); */
}

/* .player-name {
    top: 140px;
    /* left:0px; */
    /* display:flex;
    justify-content: center;
} */

.success-buttons {
    position: relative;
    top: -200px;
}

.success-buttons button {
    height: 60px !important;
    font-size: 1.5rem !important;
    /* background: linear-gradient(45deg, rgb(37, 18, 93)  0 50%, rgb(155, 6, 153) 50% 100%) !important; */
}


.usernameInput, .passwordInput {

    width: 175px !important;
    /* color: white !important; */
    /* color: hsla(0,50%,50%,1) !important; */
    margin: 7.5px !important;
    margin-top: 150px !important;
    height: 50px !important;
    padding: 10px;
    z-index: 10000 !important;
    /* position: absolute;
    left: calc(50vw -50%);
    top: calc(50vh - 50%); */
    border-bottom: 3px solid rgba(134, 68, 255, 0.4)!important;
    color: white !important;
    background-color: black;
    /* border: 2px solid white !important; */
}

.usernameInput::placeholder, .passwordInput::placeholder {
    /* color: hsla(0,50%,50%,1) !important; */
    color: rgb(211, 146, 255) !important;
    /* opacity: 0.75; */
}

.usernameInput::placeholder, .passwordInput::placeholder {
    color: white !important;
    opacity: 0.75;
}


.usernameInput {
    /* margin-top: -50px !important; */
    /* margin-top: 120px !important; */
    /* left: calc(50vw -50%); */
}

.loginButton {
    background: #f7f7f7;
    /* opacity: 0.6; */
    color: white;
    position: absolute;
    /* top: 450px;
    left: 325px; */
    left: calc(50vw + 237.5px) !important;
    top: calc(50vh - 37.5px) !important;
    /* background: linear-gradient(135deg, rgb(155, 6, 153) 0 50%, red 50% 100%) !important; */
    /* background: rgb(151, 151, 151); */
}

.guestButton {
    /* background: #7303fc; */
    /* opacity: 0.8; */
    cursor: pointer;
    position: relative;
    /* top: 25px; */
    width: 350px !important;
    left:0px;
    /* background: linear-gradient(135deg, rgb(155, 6, 153) 0 50%, red 50% 100%) !important; */
    /* background: rgb(82, 82, 82)  !important; */
}

.matter {
    color: #7303fc;
}

.registerButton {
    /* background: #6047ff; */
    /* opacity: 0.6; */
    color: white;
    /* position: relative;
    top: -150px; */
    position: absolute;
    /* top: 450px;
    left: 325px; */
    left: calc(50vw - 412.5px) !important;
    top: calc(50vh - 37.5px) !important;
    /* background: rgb(144, 144, 144); */
    /* background: linear-gradient(135deg, rgb(155, 6, 153) 0 50%, red 50% 100%) !important; */
}


.registerButton, .loginButton {
    width: 150px !important;
    /* border: 3px solid rgb(189, 189, 189) !important; */
    /* background: rgba(242, 242, 242, 0.4) !important; */
    color: white;
    padding: 20px !important;
    height: 75px !important;
    background: transparent;
    cursor: pointer !important;
}

.registerButton:hover, .loginButton:hover, .logoutButton:hover {
    /* background: rgba(255,0,0,0.75) !important; */
    /* background: white; */
    /* color: rgb(0, 0, 0) !important; */
    /* color: hsla(0,50%,50%,1); */
    color: white;
    box-shadow: rgb(37, 18, 93) 0px 0px 50px !important;
    /* padding: 25px !important; */
    /* text-decoration:solid; */
}



.loginData {
    font-size: 2rem;
    text-align: center;
    /* letter-spacing: 3px; */
    margin-top: 0px;
    z-index: 10000;

}

.icon-img {
    position: absolute;
    left: calc(50vw - 75px);
    top: calc(50vh - 150px);
    width: 150px;
    height: 150px;
    user-select: none;
    pointer-events: none;
}

.icon-img::before {
  content: '';
  z-index: 10;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
}


#log-out {
    opacity: 0.4;
    height: 100px;
    font-size: 3rem;
    /* background: #2c0066; */
    /* background: none !important; */
    /* border: 3px solid white; */
    border: 3px solid rgb(56, 18, 138) !important;
    /* background: rgba(248, 248, 248, 0.4) !important; */
    background-color: rgb(37, 18, 93) !important;
    color: white;
    transition: opacity 0.15s linear;
}

#log-out:hover {
    opacity: 1;
}

#play:hover {
    opacity: 1;
}



.early {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 20px;
    outline: none;
    font-size: 1.5rem !important;
    border:2px solid rgb(51, 255, 0);
    text-shadow: 0px 0px 15px rgb(30, 255, 0);
    box-shadow: 0px 0px 15px rgb(0, 255, 89);
    background-color: black;
    color: rgb(77, 255, 0);
    border-radius: 5px;
    padding: 10px;
    width: 200px;
    height: 60px;
    cursor: pointer;
    transition: color, background-color 0.4s linear;
}

.early:hover {
    background-color: rgb(30, 255, 0);
    color: black;
}


.apply {
    position: absolute;
    left: -25px;
    bottom: 25%;
    /* margin: 20px; */
    outline: none;
    font-size: 2rem;
    border: 2px solid #6047ff;
    text-shadow: 0px 0px 15px #6047ff;
    box-shadow: 0px 0px 15px #6047ff;
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 10px;
    width: calc(100% + 50px);
    height: 75px;
    cursor: pointer;
}

.vip {
    cursor: pointer;
    z-index: 100;
    transition: color, background-color 0.1s ease-in-out;
}

@keyframes glowing {
    0% {
      /* background-color: #2ba805; */
      box-shadow: 0 0 5px gold;
    }
    50% {
      /* background-color: #49e819; */
      box-shadow: 0 0 25px gold;
    }
    100% {
      /* background-color: #2ba805; */
      box-shadow: 0 0 5px gold;
    }
  }

.vip:hover {
    background-color: gold;
    color: black;
}

.discord-a, .editor-a, .support-a, .short-a {
    cursor: pointer;
    z-index: 100;
}



.discord, .short {
    position: absolute;
    right: 0px;
    bottom: calc(50vh + 110px);
    margin: 20px;
    outline: none;
    font-size: 1.5rem;
    border: 2px solid #1289ff;
    /* text-shadow: 0px 0px 15px #1289ff; */
    /* box-shadow: 0px 0px 15px #1289ff; */
    background-color: transparent;
    color: #1289ff;
    border-radius: 5px;
    padding: 10px;
    width: 350px;
    height: 50px;
    cursor: pointer;
    transition: color, background-color 0.05s linear;
}



.itch-frame {
    margin:20px;
    border: 2px solid #7d12ff;
    text-shadow: 0px 0px 15px #7d12ff;
    box-shadow: 0px 0px 15px #7d12ff;
    /* width: 250px; */
}

.short {
    left: calc(50vw - 200px);
    bottom: 0;
    border: 2px solid #ff1269;
    text-shadow: 0px 0px 15px #ff1269;
    box-shadow: 0px 0px 15px #ff1269;
    background-color: black;
    color: #ff1269;
}



.short:hover {
    color: black;
    background-color: #8a0234;
}


.editor:hover {
    background-color: #99d922;
    color: black;
}

.vip {
    position: absolute;
    /* left: calc(50% - 195px); */
    right: calc(50vw - 280px);
    bottom: calc(50vh - 325px);
    margin: 20px;
    outline: none;
    font-size: 1.5rem !important;
    border: 2px solid gold;
    text-shadow: 0px 0px 15px gold;
    /* box-shadow: 0px 0px 15px gold; */
    animation: glowing 750ms infinite;
    background-color: black;
    color: gold;
    border-radius: 5px;
    padding: 10px;
    width: 525px;
    height: 60px;
    cursor: pointer;
}

.discord:hover{
    background-color: #1289ff;
    color: black;
}

.red {
    /* opacity: 1; */
    background-color: purple;
}

.guest {
    color: gray;
}

#directDiv {
    /* transition: opacity 0.2s linear; */
    cursor: pointer;
    color: purple;
    font-size: 4rem;
    text-align: center;
    display: flex;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 200px;
    height: 200px;
    /* padding-bottom: 10px; */
    z-index: 1000;
}

/* #directDiv:hover {
    opacity: 1;
    background-color: purple;
    color: white;
} */

.menu-side-buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    min-height: 100px;
    /* scale: 0.75; */
}



.support {
    position: absolute;
    right: 0px;
    bottom: calc(50vh - 225px);
    /* top: 0; */
    margin: 20px;
    margin-bottom: 20px;
    outline: none;
    font-size: 1.5rem !important;
    border: 2px solid #12ffd0;
    /* text-shadow: 0px 0px 15px #12ffd0; */
    /* box-shadow: 0px 0px 15px #12ffd0; */
    background-color: black;
    color: #12ffd0;
    border-radius: 5px;
    padding: 10px;
    width: 350px;
    height: 55px;
    /* height: 50px; */
    cursor: pointer;
    transition: color, background-color 0.05s linear;
}


.support:hover {
    color: black;
    background-color: #008d71;
}




.editor {
    position: absolute;
    right: 0px;
    bottom: calc(50vh - 160px);
    /* top: 0; */
    margin: 20px;
    margin-bottom: 20px;
    outline: none;
    font-size: 1.5rem !important;
    border: 2px solid #8fff53;
    /* text-shadow: 0px 0px 15px #ff6a53; */
    /* box-shadow: 0px 0px 15px #ff6a53; */
    background-color: black;
    color: #53ff70;
    border-radius: 5px;
    padding: 10px;
    width: 350px;
    height: 50px;
    /* height: 50px; */
    cursor: pointer;
    transition: color, background-color 0.05s linear;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: -20px;
    top: 0;
  }
  
  .background {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    mask-image: radial-gradient(white 0%, white 30%, transparent 80%, transparent);
    opacity: 0.1;
  }
/*   
  .circle-container {
    position: absolute;
    transform: translateY(-10vh);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  .circle-container .circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: red;
    font-size: 20px;
    mix-blend-mode: screen;
    /* background-image: radial-gradient(
      hsl(180, 100%, 80%),
      hsl(180, 100%, 80%) 10%,
      hsla(180, 100%, 80%, 0) 56%
    ); 
    animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
  }
  
  @keyframes fade-frames {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes scale-frames {
    0% {
      transform: scale3d(0.4, 0.4, 1);
    }
    50% {
      transform: scale3d(2.2, 2.2, 1);
    }
    100% {
      transform: scale3d(0.4, 0.4, 1);
    }
  }
  @keyframes move-frames-1 {
    from {
      transform: translate3d(20vw, 110vh, 0);
    }
    to {
      transform: translate3d(20vw, -140vh, 0);
    }
  
   */
  .message {
    position: absolute;
    top: 10px;
    left: 30px;
    color: white;
    /* font-family: "Josefin Slab", serif; */
    line-height: 15px;
    font-size: 18px;
    text-align: left;
    pointer-events: none;
    animation: message-frames 2s ease 1s forwards;
    opacity: 0;
  }
  
  @keyframes message-frames {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  #container-56278adf9cd841cf07fcb1701d702880 {
    /* transform: scale(10%); */
    position: absolute;
    /* left:-38%; */
    /* bottom: -60vh; */
    left: -350px;
    top: -300px;
    transform: scale(20%);
    user-select: none;
    opacity: 0.1;
  }

  .registerButton {
    position: absolute;
    top: calc(50vh + 85px);
    left: calc(50% - 410px);
  }
