#file{
    width: 800px;
  }
  
  #file .titolo label{
    margin: 0;
    margin-top: 2%;
    padding: 0;
  }
  
  .titolo-img{
    position: relative;
    float: left;
    width: 300px;
    padding: 2% 2% 0% 1%;
    font-size: 12px;
    font-weight: 100;
  }
  
  .titolo-img label{
    margin: 0;
    padding: 0;
  }
  
  #vecchia-img{
    position: relative;
    float: left;
    width: 300px;
    height: 300px;
    padding: 1%;
    margin-top: 1%;
    border: 2px solid black;
    border-radius: 10px;
    overflow: hidden;
  }
  
  #vecchia-img .testo{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: -2.5%;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 300px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  #vecchia-img .testo:hover{
    opacity: 1;
  }
  
  #vecchia-img img{
    height: 100%;
    border-radius: 10px;
  }
  
  .drop-zone {
    position: relative;
    float: left;
    width: 300px;
    height: 300px;
    padding: 1%;
    margin: 1% 0 0 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    border: 2px dashed black;
    border-radius: 10px;
    color: black;
  }
  
  .drop-zone--over {
    border-style: solid;
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
    float: left;
  }
  
  .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
  }