* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    background: rgba(0, 84, 126, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 50px;
}

.inputs {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width:300px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
h2{
    font-size: 32px;
    text-align: center;
}
.data{
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 5px;

}
.data input{
    padding: 5px;
    outline: none;
    border: rgba(0, 84, 126, 1) solid 1px ;
border-radius: 5px;

}
.data button{

    background: rgba(0, 84, 126, 1);
    color: white;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
}
.list{
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: flex-start;
}
.box{
    background: white;
    padding: 10px;

    border-radius: 10px;
    width: 200px;
}
.item{
    background: black;
    padding: 10px;
    margin: 5px;
    cursor: move;
    color: white;
}







