@import url('https://fonts.cdnfonts.com/css/netflix-font');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Netflix Font', sans-serif;
}

#omni {
    height: 100vh;
    width: 100%;
}

.container {
    width: 100%;
    height: 100%;
    background-image: url("bg.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

.body {
    background-color: rgb(255, 255, 255);
    width: 80%;
    height: 90%;
    border-radius: 25px;
    opacity: 0.95;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.preput {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preput p {
    font-size: 18px;
}

.preput textarea {
    width: 90%;
    border-radius: 12px;
    padding: 12px;
}

.functions-box {
    margin-top: 20px;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
  font: inherit;
  padding: 0.4em 0.1em;
  margin-right: 20px;
}

input:disabled {
  display: none;
}

.functions button {
  background-image: linear-gradient(92.88deg, #8a31d2 9.16%, #832EBD 43.89%, #7031A9 64.72%);
  border-radius: 3px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  font-family: "Inter UI","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 2.3rem;
  padding: 0 1.6rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all .5s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.functions button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: .1s;
}

@media (min-width: 768px) {
  .functions button {
    padding: 0 2.6rem;
  }
}

.initial-text {
  color: gray;
}

.big {
  font-size: 1em;
}


/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.custom-dropdown select {
  background-color: #313A88;
  color: #fff;
  font-size: inherit;
  padding: .5em;
  padding-right: 2.5em;	
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: '';
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after { /*  Custom dropdown arrow */
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -.5em;
}

.custom-dropdown::before { /*  Custom dropdown arrow cover */
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
}



.output-box {
    margin-top: 20px;
    width: 100%;
    height: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.output {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    background-color: rgb(223, 223, 223);
    border-radius: 12px;
}

.output-box p {
    font-size: 18px;
}

.output {
  padding: 12px;
  overflow: auto;   
}

.docs {
  margin-top: 10px;
  text-align: center;
}

.docs a {
  color: #a32efc;
}