 .tapume-mobile {
        display: none;
    }
    
    .tapume {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: ;
        height: ;
        z-index: 99999999999999999;
        background: #1c1e10;
    }
    
    .tapume img {
        width: 100%;
    }
    
    @media(max-width:768px){
    
        .tapume{
            display:none
        }
    
        .tapume-mobile {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 99999999999999999;
            background: #ffffff;
        }
    
        .tapume-mobile img {
            width: 100%;
        }
    }