.left{
    display: flex;
    align-items: center;
}

.container{
    position: relative;
    display: inline-block;
    background-color:rgb(220, 220, 220);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    text-align: center;
    font-size: 32px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);

    transition: all 0.1s ease;   
}

.container:active {
    transform: translateY(4px) !important;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.container.pressed {
        transform: translateY(4px);
        box-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.15),
            0 1px 2px rgba(0, 0, 0, 0.1);
    }

body{
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation; 
    -ms-touch-action: manipulation; 
    height: 100%;
    overflow-y: auto;
    text-align:center;
    font-family: "Mochiy Pop One", sans-serif;
}

html{
    overflow: hidden;
}




