@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

.box{
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    aspect-ratio: 1/1;
    width: 100px;
    height: 100px;
    /* border-radius: 10px; */
    cursor: pointer;
}
.win{
    background-color: rgba(58, 247, 44, 0.5);
}

