.upload {
    border: 1px solid black;
    border-radius: 5px;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
}

.upload.done {
    background-color: limegreen;
}
.upload.error {
    background-color: lightcoral;
}
.upload .status {
    color: black;
    font-size: medium;
    text-align: center;
}
.upload.dragover {
    background-color: aquamarine;
}
.width-fix {
    width: 90%;
}