
body{
    margin: 0px;
    font-family: arial;
}
#mainContainer{
display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    margin: 0px;
    padding: 0px 0px 50px 0px;
    /*border-radius: 15px;*/
    /*box-shadow: #00ffd063 0px 0px 33px;*/
    align-items: center;
}
#inputArea{
    width: 50%;
    height: auto;
    min-height: 69px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    align-content: center;
    display: flex;
    border-radius: 15px;
    box-shadow: #99999963 0px 0px 15px;
}
#downloadArea{
    width: 50%;
    height: auto;
    /*min-height: 69px;*/
    padding: 20px;
    align-items: center;
    justify-content: center;
    align-content: center;
    display: flex;
    border-radius: 15px;
    box-shadow: #99999963 0px 0px 0px;
    margin-top: 20px;
}
.downloadInsArea{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #f0f0f0;
    margin: 10px 0px;
}
#downloadLinks{
    width: 100%;
}
.downloadBtn{
    background: #41adff;
    padding: 10px;
    width: 100px;
    text-align: center;
    border-radius: 10px;
    color: white;
    border: none;
    background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
    opacity:1;
}
.downloadBtn:hover{
    background: black;
    color: white;
    cursor:pointer;
}
.downloadBtn:disabled{
    opacity:.5;
  background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
    color: #666666;
    cursor:default;
    
}
#InputTarget{
    border: 1px dashed #8e00e7;
    border-radius: 10px;
    /*width: 427px;*/
    height: 100px;
    margin: 30px;
    padding: 50px;
}
#input-image, #image-file{
    height: 200px;
    position: relative;
    opacity: 0;
    width: 150%;
    top: -18%;
    left: 50%;
    background-color: aquamarine;
    transform: translate(-50%,-60%);
}
#dragImg{
    width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
#formInput{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}
footer{
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: #5b5a5a;
    color:white;
    bottom: 0%;
    background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
}
header{
    width: 100%;
    margin: 0px;
    background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}
#imgdrag{
    width: 50px;
    position: relative;
    left: 23%;
    top: 50%;
    transform: translate(-100%,0%);
    filter: invert(20%) sepia(91%) saturate(3026%) hue-rotate(238deg) brightness(76%) contrast(147%);
}
#draganddropText{
    margin: 0px;
    font-size: 15px;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 20em;
}
header nav{
    position: relative;
    z-index: 20;
    display: block;
    padding: 0;
}
#menuNav{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 30%;
    list-style: none;
    color: white;
    height: 28px;
}
a{
    color:white;
}
.slider {
  -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 20px;
    margin-top: 15px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #41adff;
  cursor: pointer;
  border-radius: 50px;
  background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #41adff;
  cursor: pointer;
  border-radius: 50px;
  background: -webkit-linear-gradient(40deg,#0800ff, #8e00e7);
}
@media only screen and (min-width: 768px) {

.preview-container{
    flex-direction: column;
}
#inputArea{
    width:80%;
}
}
