.drag-area {
    border: 2px dashed #fff;
    height: 500px;
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.smalldrag {
    height: 200px;
}

.drag-area.active {
    border: 2px solid #fff;
}

.drag-area .icon {
    font-size: 100px;
}

.smalldrag .icon {
    font-size: 20px;
}

.drag-area header {
    font-size: 30px;
    font-weight: 500;
}

.smalldrag header {
    font-size: 20px;
    font-weight: 200;
}

.drag-area span {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 15px 0;
}

.smalldrag span {
    font-size: 15px;
    font-weight: 200;
    margin: 10px 0 10px 0;
}

.drag-area img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}


