.drag-area{
    border: 2px dashed #94e7db;
    height: 150px;
    /* width: 700px; */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .drag-area.active{
    border: 2px solid #94e7db;
  }
  .drag-area .icon{
    font-size: 50px;
    color: #94e7db;
    margin-top: 70px;
  }
  .drag-area header{
    font-size: 30px;
    font-weight: 500;
    color: #94e7db;
    text-align: center;
  }
  .drag-area span{
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin: 10px 0 15px 0;
  }
  .drag-area button{
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    background: #fff;
    color: #5256ad;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s;
  }
  
  .drag-area button:hover{
    background: rgb(228, 220, 220);
  }
  
  .drag-area img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  
  
  
  @media (max-width: 745px) {
  
    .drag-area button{
      padding: 8px 20px;
      font-size: 18px;
      font-weight: 450;
    }
  
  .drag-area{
    height: 400px;
    width: 450px;
  }
  
  .drag-area header{
    font-size: 25px;
    font-weight: 450;
    color: #94e7db;
  }
  
  .drag-area .icon{
    font-size: 80px;
  }
  
  }