@font-face {
  font-family: 'Arial Narrow';
  src:
    url('assets/font/arialnarrow.ttf') format('truetype'),
  font-display: swap;
}

body {
  display:flex;
  flex-direction:column;
  margin: 0px;
  background-color: gainsboro;
  color: black;
}

html, body {
  overscroll-behavior: none;
  overflow-x: hidden;
}

/* CANVAS  */
#sprayCanvas {
  display: block;
  position:relative;
  width: 100%;
  height: calc(100dvh - 32px);
  cursor: url('assets/paint-can.svg') 8 8, crosshair;
  top:0;
  left:0;
  z-index:98;
}

/* STATUS BAR */
#bar {
  position: relative;
  width: 100%;
  background-color: honeydew;
  height: 32px;
  padding-top: env(safe-area-inset-top);
  box-sizing: border-box;
  z-index: 99;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

#name {
  position: absolute;
  left: 0;
  height: 100%;
  width:138px;
}

#name-button {
  font-family: 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 0.4px;
  height: 100%;
  display: flex;
  align-items: center;
  border: none;
  background: none;
  color: black;
  padding: 4px;
}

/* When screen width is 600px or less */
@media (max-width: 600px) {
}