*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}

.container{
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #0b0423;   
    gap:20px;

}

#left,#right{
    width: 50%;
    max-width: 250px;
    min-height: 400px;
    border:2px dashed white;
}


.list{
    color:#fff;
    font-size: 20px;
    text-align: center;
    background: #e91e63;
    height:55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:20px;
    border-radius: 5px;
    cursor: grab;
}