#game-container {
    position: relative;
    width: 65%;
    height: calc(100vh - (132px + 52.86px + 31.71px + 100px));
    border: 2px solid #000;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

#block {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: red;
    cursor: pointer;
}

#score, #timer {
    position: absolute;
    top: 10px;
    font-size: 20px;
}

#score {
    left: 10px;
}

#timer {
    right: 10px;
}