* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: #928cff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 30px;
}

.inputs {
    background-color: #fff;
    padding: 10px;
    width: 300px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

h2 {
    font-size: 32px;
    text-align: center;
}

.data {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 4px;
}

.data input {
    padding: 4px;
    outline: none;
    border: 2px solid #928cff;
}

.data button {
    background-color: #928cff;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: flex-start;

}

.box {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 200px;
}

.item {
    background-color: #928cff;
    padding: 10px;
    margin: 4px;
    cursor: move;
    color: #fff;
}