body {
    margin: 0;
    padding: 0;
    color: white;
    overflow: hidden;
    font-family:'Courier New', Courier, monospace;
    
}
#backgroundVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
#debugbar {
    width: 100%;
    text-align: center;
    font-size: 1.5vh;
    user-select: none;
}
.c2ebox {
    display: flex;
    position: fixed;
    background-color: #141414;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.c2e {
    font-weight: 700;
    font-size: 32px;
    user-select: none;
}

.maincontent {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
#hackerpanel {
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    height: 60%;
    text-align: center;
    backdrop-filter: blur(5px);
    width: 50%;
    border: 2.5px solid black;
    border-top: 0;
}

.title {
    flex-grow: 1;
}

.topbar {
    background-color: black;
    display: flex;
    justify-content: space-between;
    
}

.close {
    cursor: pointer;
}

.contentgrid {
    display: flex;
    flex-direction: column;
    align-items: space-between;
}

@media (max-width: 660px) {
    #hackerpanel {
        width: 80%;
    }
}
@media (max-height: 650px) {
    #debugbar {
        font-size: 2vh;
    }
}