@import url('https://fonts.googleapis.com/css2?family=Sixtyfour+Convergence&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: SixtyFour Convergence;
}

.container {
    width: 100%;
    min-height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#left, #right {
    width: 300px;
    min-height: 400px;
    margin: 20px;
    border: 2px dashed whitesmoke;
}


.list {
    background-color: rgb(19, 88, 88);
    height: 60px;
    margin: 30px;
    display: flex;
    align-items: center;
    cursor: grab;
}

.list img {
    width: 10px;
    margin: 0 20px 0 15px;
}