.upload_form {
    display: flex;
    justify-content: center;
}

.upload_form_inside h3 {
    text-align: center;
}

.filedrop {
  width: 35vw;
  height: 30vh;
  border: 2px dotted black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}

.filedrop:hover {
  background: #82945f;
}

.filedrop.dragover {
  background: #82945f;
}
