body, html {
    font: 1em sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    font-size: 1vw;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #ffffff;
    position: absolute;
}

.subcontainer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#infoContainer {
    background-color: #000000;
    color: #ffffff;
} 

#info {
    margin: auto;
    width: 100%;
    text-align: center;
    
}

#image {
    border: 2px solid #000000;
}

input[type="text"] {
    border-radius: 2px;
    border: 0px;
    outline:0px;
    border-bottom: 2px solid #ffffff;
    width: 60%;
    padding: 10px;
    color: inherit;
    text-align: center;
    font: inherit;
    background-color: #1d1d1d;
}

input[type="text"]:hover {
    width: 62%;
    border-bottom: 2px solid #cfb5ff;
}

input[type=file] {
    font: inherit;
    font-size: 1vw;
}

input[type=file]::file-selector-button {
    margin-right: 5%;
    background-color: #ffffff;
    color: #000000;
    width: fit-content;
    font: inherit;
    font-size: 1vw;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}

input[type=file]::file-selector-button:hover {
    background-color: #cfb5ff;
}

#remove {
    width: fit-content;
    display: none;
    background-color: inherit;
    color: red;
    border-radius: 0;
    box-shadow: 0 0px #6c6c6c;
}

#remove:hover {
    color: darkred;
}

button {
    background-color: #ffffff;
    color: #000000;
    width: 60%;
    font: inherit;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #cfb5ff;
}

button:active {
    background-color: #b58dff;
}

button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
button span:after {
    content: '\2193';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -10%;
    transition: 0.5s;
}
  
button:hover span {
    padding-right: 5%;
}
  
button:hover span:after {
    opacity: 1;
    right: 0;
}

.warning .warningtext {
    visibility: hidden;
    padding: 10px;
    background-color: #414141;
    color: #ffffff;
    line-height: 150%;
    border-radius: 5px;
    white-space: nowrap;
    text-align: left;
    font-size: 1vw;
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 100%;
    transition-property: visibility;
    transition-delay: 0s;
}
  
.warning:hover .warningtext {
    visibility: visible;
    transition-delay: 0.3s;
}

.warning {
    cursor: default;
    color: red;
    vertical-align: middle;
    margin-left: 1%;
    font-size: 2vw;
    position: absolute;
}