#bigX{
color: var(--main-color-medium);
    font-size: 4rem;
    font-weight: bold;
    transition:.2s;
}

.lastcoef{
color: #fff;
    position: absolute;
    bottom: 0;
    background: #20212b;
    width: 100%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 70px;
    padding-left: 20px;
    padding-right: 20px;
}
.lastcoef .content{
display: flex;
    gap: 10px;
    align-items: center;  
    overflow:hidden;
}
.lastcoef .content .history{
    position: absolute;
    width: 95%;
    text-align: center;
    color: var(--main-color-low);    
}
.lastcoef .content .bubble-box-win{
background: #31ff0024;
    border: 1px solid #12871533;
    color: #75e974;
    align-items: center;
    display: flex;
    height: fit-content;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;    
    user-select:none;
}
.lastcoef .content .bubble-box-lose{
background: #ff000024;
    border: 1px solid #87121233;
    color: #e97474;
    align-items: center;
    display: flex;
    height: fit-content;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
        user-select:none;
}
.bubbles-game{
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 70px;
    padding-top: 0px; 
    display: grid;
    gap: var(--padding);
    margin: auto;
    max-width: 500px;
    position: relative;
}

@media screen and (max-width:1000px) {
    
.bubbles-game{
    height: 300px;
}

}