body {
    margin: 0;
    overflow: hidden;
    background-color: #1f1f1f;
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #fafafa;
}

.box {
    /*this is the actual box*/
    position: absolute;
    width: 50px;
    height: 50px;
    color: purple;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid purple;
    border-radius: 20px;
    font-size: 30px;
}

.keyBox {
    font-size: 16px;

    position: absolute;
    width: 50px;
    height: 50px;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#keybox_counter {
    position: relative;
    margin: 100px;
    top: 10px;
    left: 10px;
    font-family: monospace;
}