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

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: rgb(15, 15, 51);
    align-items: center;
    gap: 30px;
    justify-content: center;
}

#right,
#left {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 300px;
    height: 500px;
    border: 2px dashed white;
}

.images {
    width: 200px;
    height: 150px;
    cursor: grab;
}