body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: "Inter";
  color: #FFFCF2;
}

#bar {
  width: 100%;
  padding: 0;
  background: #28282B;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

#controls {
  padding: 8px;
  background: rgb(41, 39, 39);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

#title {
  margin: 0 1rem 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 800;
  transition: opacity 0.15s ease;
  flex: 1 1 auto;
  text-align: right;
}

#controls:not(:empty) + #title {
  display: none;
}

input[type="range"] {
  width: 4rem;
}

canvas {
  width: 100%;
  height: 100%;
  background: #000;
}

input {
  font-family: "Inter";
}

#fileUploadWrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.custom-file-upload {
  display: inline-block;
  padding: 8px 16px;
  background-color: #619B8A;
  color: #FFFCF2;
  font-family: "Inter";
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.custom-file-upload:hover {
  background-color: #1d2d44;
}

#fileName {
  font-family: "Inter";
  font-size: 14px;
  color: #FFFCF2;
}

button{
  font-family: "Inter";
  background-color: #FFFCF2;
  color:black;
  border: none;
  border-radius: 4px;
  width:4rem;
  height:1.5rem;
  transition: background-color 0.2s ease;

}

button:hover {
  background-color: #8a8a8a;
}