body {
    margin: 0px;
    overflow: hidden;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
}

.cursor {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: rgba(1, 1, 1, 0.5);
}

.chat {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 400px;
    background-color: rgba(1, 1, 1, 0.4);
    color: white;
}

#mc {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.overlay {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #2E1A0A;
}

.overlay .loading {
    position: absolute;
    width: 80%;
    height: 80px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #160D06;
    padding: 10px;
}

.overlay .loading .bar {
    background: #032046;
    width: 0;
    height: 100%;
    transition: width 1s ease-in-out;
}

.overlay .auth {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #160D06;
    padding: 10px;
    display: none;
}

.overlay .auth input, .overlay .auth > button {
    width: 100%;
    height: 70px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font: inherit;
    font-size: 40px;
    background: #2E1A0A;
    border: none;
}

.overlay .auth button {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    font: inherit;
    background: #2E1A0A;
    border: none;
}

.overlay .auth button:hover {
    background: #1F1107;
}
