* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    color: white;
    min-height: 100vh;
}

#uploadeImageInput {
    width: 40%;
    background-color: red;
    border: none;
    outline: none;
    padding: 5px 15px;
    opacity: 0;
    cursor: pointer;
    border-radius: 5px;
}
#uploadeBtn {
    position: absolute;
    width: 40%;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    font-size: 20px;
    z-index: -1;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
}

#startBtn,
#uploadeAnother,
#downloadResult {
    width: 40%;
    margin: 0 auto;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    font-size: 20px;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

#sm-img {
    position: absolute;
    left: 10px;
    top: 10px;
}
#uploadeImage,
#startRemoveBG,
#loaderScreen,
#RemoveBGResult {
    display: none;
}



@media (max-width: 1300px) {
  #uploadeImage,
  #startRemoveBG,
  #loaderScreen,
  #RemoveBGResult {
    max-width: 65% !important;
  }
}
@media (max-width: 700px) {
  #uploadeImage,
  #startRemoveBG,
  #loaderScreen,
  #RemoveBGResult {
    max-width: 95% !important;
  }
  #startBtn,
#uploadeAnother,
#downloadResult,
#uploadeBtn {
  padding: 5px !important;
  font-size: 13px;
}
}


/* 
    loader
*/

.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.0s infinite ease-in-out;
  margin: 0 auto;
}
.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}
