html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    background: url("bg.jpeg") no-repeat center center;
    background-size: cover;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
}

.dropzone {
    border-radius: 2.5rem;
    border: 3px solid white;
    background: white;
    width: 21.875rem;
    height: 21.875rem;
    width: 100%;
    max-width: 21.875rem;
    margin: auto;
    box-shadow: 0 0.625rem 1.25rem #0000001a;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dz-message {
    text-align: center;
  }
  
  .dz-message .icon {
    font-size: 4em;
    color: #007bff;
    margin-bottom: 0.5em;
  }
  
  .dz-message span {
    display: inline-block;
    font-size: 1.2em;
    color: #555;
  }
  
  /* Style the file preview */
  .dropzone .dz-preview .dz-image img {
    width: 100%;
    height: auto;
  }
  
  /* Style for the success and error messages */
  .dropzone .dz-success-mark, .dropzone .dz-error-mark {
    display: none;
  }
  
  .dropzone .dz-error-message {
    color: #d9534f;
  }