*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

main{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.notification{
    display: flex;
    justify-content: center;
    padding: 1rem;
    font-size: 4rem;
    font-weight: 600;
}

.test_grid{
    width: 400px;
    aspect-ratio: 1/1;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    border: 1px solid grey;
    
    .cell{
        border: 1px solid grey;
    }
}

.draggable__wrapper{
    width: 100%;
    max-width: 800px;
    height: 15rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.draggable{
    display: grid;

    .cell{
        width: 50px;
        aspect-ratio: 1/1;
        background-color: transparent;
    }
    
    .active{
        border: 10px groove #96969679;
        background-color: green;
    }
}