/* no focus */

*:focus {
    outline: none;
}


/* no arrows input number */

body {
    padding: 0;
    margin: 0;
    background: #444;
    font-family: "Roboto Mono", monospace;
    color: white;
}

@media only screen and (min-width: 600px) {
    .overlay {
        max-width: 700px;
    }
    h1,
    h2,
    h3 {
        margin-top: 0.5em;
        margin-bottom: 0.3em;
    }
    .desktop {
        display: initial !important;
    }
    .mobile {
        display: none !important;
    }
}

#abilities {
    line-height: 6px;
    font-size: 1.5em;
}

#avatar-slogan {
    font-size: 1.5em;
    margin-top: 0px;
}

#avatar-name {
    font-size: 3.5em;
    margin-bottom: 20px;
}

#loader-arrows,
#loader-text {
    display: flex;
    height: 5vh;
    align-items: center;
    justify-content: center;
    transition: 1s;
    opacity: 1;
    transition: opacity 2s;
}

.hide {
    opacity: 0 !important;
}

.center-screen {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.centered {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.top-left {
    text-align: left;
    position: absolute;
    top: 8px;
    left: 16px;
    width: 20%;
}

.top-middle {
    text-align: right;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-right {
    text-align: right;
    position: absolute;
    top: 8px;
    right: 16px;
}

.bottom-middle {
    position: absolute;
    bottom: 8px;
    text-align: center;
    width: 100%;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes arrows {
    0%,
    100% {
        color: white;
        transform: translateY(0);
    }
    50% {
        color: #3AB493;
        transform: translateY(20px);
    }
}

#loader-arrows span {
    margin-right: 4px;
    --delay: 0s;
    animation: arrows 1s var(--delay) infinite ease-in-out;
}

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Monospace;
    font-size: 13px;
    line-height: 24px;
    overscroll-behavior: none;
}

a {
    color: #ff0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    text-transform: uppercase;
}

#info {
    position: absolute;
    top: 0px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

a,
button,
input,
select {
    pointer-events: auto;
}

.dg.ac {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2 !important;
    /* TODO Solve this in HTML */
}

#overlay {
    position: absolute;
    font-size: 16px;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
}

#overlay button {
    background: transparent;
    border: 0;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 4px;
    color: #ffffff;
    padding: 12px 18px;
    text-transform: uppercase;
    cursor: pointer;
}