body{
    height: 100vh;
    width: 100vw;
    background-color: #212121;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    
}
.game{
    margin-top: -48px;
}
*{
    margin: 0;
    padding: 0;
}

h1{
    color: white;
    padding: 10px;
}
.row{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.col{
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url(mole.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 100px;
    margin: 8px;
    width: 80px;
    height: 80px;
    border-radius: 500px;
}
#col:active{
    background-color: red;
}
.s{
    background-color: red;
}
.a{
    background-image: url(mole.png);
    background-size: cover;
    background-color: transparent;
    z-index: 1;
    background-position: center 30px;
}

#btn{
    margin-top: 14px;
    box-shadow: 0 5px 9px -2px #663d3d;
    transition: transform .2s;
    font-size: 20px;
    height: 50px;
    width: 100px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(227, 125, 255);
    cursor: pointer;
}
#btn:hover{
    transform:scale(1.13);
}
#btn:active{
    transform:scale(0.9);
}
@media (min-width: 100px) and (max-width: 995px) {
   
    .container{
        margin-left: 15px;

    }
    .game,h1{
        margin-left: 16px;
    }
    #btn{
        margin-left: 20px;
    }
}
