.image-upload {
  margin: 5rem 2rem;
}

.dropzone {
  border: 2px dashed black;
  color: blue;
  position: relative;
  height: 150px;
  /* background-color: red; */
}

.dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 40%;
  top: 50px;
  font-size: 16px;
}
/* .dropzone-desc i{
    font-size: 2rem;
  } */
.dropzone input,
.dropzone input:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 150px;
  cursor: pointer;
  opacity: 0;
}

.dropzone:hover,
.dropzone-wrapper.dragover {
  background: #ecf0f5;
}
.drag-over {
  border: 2px dashed green;
}

#information {
  padding: 2rem;
}
#information p {
  margin: 3px;
}

#gallery{
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 4rem;
}

#gallery img{
  width: 20rem;
  height: 20rem;
}



.toast{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
   display: none;
}
.toast p{
  background-color: #1009dc;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
 
}


@media only screen and (max-width: 700px){
  #gallery{
    grid-template-columns: auto;
  }
}

@media only screen and (max-width: 1200px) and (min-width:701px) {
  #gallery{
    grid-template-columns: auto auto;
  }
}