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

h1 {
    text-decoration: underline;
}

.page {
    padding: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.select-file{
    display: flex;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    text-decoration: underline;
}

.grow {
    animation: grow 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}

@keyframes grow {
    0% {
        font-size: 22px;
        opacity: 0.8;
        color: #88847b
    }
    50%{
        /* font-size: 21px; */
        opacity: 1;
        filter: drop-shadow(0 0 4px #2d2d2d2d);
        color: black;
    }
    100%{
        opacity: 0.8;
        color: #88847b;
        font-size: 22px;
    }
}


input[type=text],
select,
button {
    padding: 12px 4px;
    margin: 2px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button.submit:hover {
    filter: drop-shadow(0.5);
}

button.submit {
    width: 50%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    float: right;
    transition: all 0.2 ease-in-out;
}

button.add {
    width: 20%;
    background-color: white;
    font-weight: 700;
    font-size: 26px;
    padding: 6px 4px;
}

.line {
    border-radius: 5px;
    background-color: #f2f2f2;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

.title {
    color: darkred;
    font-weight: bolder;
}

.line>span {
    padding: 0 7px;
}

  #drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 480px;
    margin: 50px auto;
    padding: 20px;
    max-width: 80vw;
  }
  #drop-area.highlight {
    border-color: purple;
  }
  .drop-form {
    margin-bottom: 10px;
  }

  #gallery {
    margin-top: 10px;
  }
  #gallery img {
    width: 50px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .progress-bar{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  #fileElem {
    display: none;
  }
  