* {
  box-sizing: border-box;
}

:root {
  --player-border: #64748b;
  --player-fill: #0f172a;
  --player-face: #e2e8f0;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1e293b, #0f172a 55%, #0b1220);
  color: #e2e8f0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding-left: 24px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

input,
textarea,
[contenteditable],
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
