*{
    margin: 0;
    padding: 0;
}
:root {
  /* CSS HEX */
--davys-gray: #4D4D4D;
--auburn: #972D2D;
--blue-violet: #7F45EC;
--eerie-black: #191919;
--eerie-black-2: #232425;
}
body {
  background: var(--davys-gray);
    display: flex;
    justify-content: center;
    align-items: center;
     font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.maindiv {
  background: var(--eerie-black);
  color: #fff;
  border-radius: .4em;
  padding: 2em;
  height: 80vh;
  width: 30vw;
  overflow: scroll;
  position: relative;
}
.maindiv p {
  margin-bottom: 2em;
}
.maindiv::scroll-bar {
  display: none;
}
label[for=imageInput]{
  background: var(--eerie-black-2);
  width: 100%;
  height: 10em;
  border-radius: .4em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 1em;
  line-height: 2em;
  cursor: pointer;
}
button {
    border: none;
    background: var(--blue-violet);
    border-radius: .3em;
    height: 3em;
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff
}
input[type=text], input[type=number]{
    border: 1px solid #999;
    border-radius: .4em;
    height: 2.5em;
    margin-bottom: .7em;
    width: 99%;
    padding: .5em;
    background: transparent;
}
input:focus {
  border: 1px solid var(--blue-violet);
  outline: none;
}
.aestheric::after {
  content: '*';
  color: var(--auburn);
}
button {
  position: absolute;
  right: 1em;
    cursor: pointer;
}
input::file-selector-button {
    font-weight: bold;
    color: #fff;
    background: #5845ff;
    padding: 0.5em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
input[type=file]{
  display: none;
}


#imagePreviewContainer img {
    height: 10em;
    border-radius: 0.4em;
    margin-block: 2em;
    margin-right: 0.5em;
}