#score_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 990;
}
#score {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 2px var(--color);
    font-family: 'Arial-Black';
    font-weight: 900;
    font-size: 30px;
    color: yellow;
    user-select: none;
}
#score2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Arial';
    font-weight: 400;
    font-size: 16px;
    color: black;
    user-select: none;
}
