:root {
  --bg: #fff;
  --panel: #15151c;
  --panel-border: #2a2a35;
  --text: #000;
  --text-dim: #9494a6;
  --accent: #ff2e63;
  --accent-2: #08d9d6;
  --focus: color(display-p3 1 0.3 0.3 / 1);
  --panel: rgba(0,0,0,0.05);
  --subtle: rgba(70,70,70,1);
}

* {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  border: none;
  box-sizing: border-box;
  text-decoration-thickness: 0.6px;
  text-decoration-color: var(--highlight);
  text-underline-offset: 0.3rem;
  text-decoration-skip-ink: none;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-weight: 500;
  overflow: hidden;
  background: white;
  color: black;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

#dropZone {
  border-radius: 100rem;
}

.drop-zone-inner {
  width: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid rgba(0,0,0,0);
  border-radius: 100rem;
  cursor: pointer;
  transition: border 0.3s ease;
}

.drop-zone:hover .drop-zone-inner, .drop-zone.drag-over .drop-zone-inner {
  border: 2rem solid var(--focus);
}

.drop-title {
}

.drop-sub {
  margin-top: 1rem;
  font-size: 80%;
  color: var(--subtle);
}

.status {
  max-width: 340px;
  min-height: 1.25em;
  text-align: center;
  font-size: 90%;
  color: var(--subtle);
  display: none;
}

.status.error {
  color: var(--accent);
}
