@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
  background: #0d0d11;
  color: #eff1f5;
  font-family: "Cascadia Code", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  user-select: none;
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#dropzone {
  border: 2px dashed #acadec;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

#previewBox {
  max-height: 20rem;
  overflow: auto;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #8283a3;
  display: none;
}

#preview {
  border-radius: 8px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

button, select, textarea {
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #45454b;
  background: #0d0d11;
}

textarea {
  width: 100%;
  height: 12rem;
  resize: none;
  margin-top: 1rem;
  border: 2px solid #8283a3;
}

button:hover, select:hover {
  background: #23232e;
}

button:hover {
  cursor: pointer;
}

#outputBox {
  display: none;
}

#lang {
  position: absolute;
  bottom: 10px;
  left: 10px;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0d0d11;
}

::-webkit-scrollbar-thumb {
  background: #acadec; 
}

::-webkit-scrollbar-thumb:hover {
  background: #63638d; 
}