* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'px';
}

@font-face {
  font-family: 'px';
  src: url('./px_grotesk_light.ttf');
  font-style: normal;
}

body {
  background: darkcyan;
}

svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div#buttons {
  position: fixed;
  left: 0;
  bottom: 60px;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

button {
  width: 270px;
  font-size: 25px;
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
}

div#instruction {
  font-size: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

div#instruction span {
  color: khaki;
  border: solid 2px khaki;
  padding: 10px 20px;
  border-radius: 100px;
}

body.drawing {
  cursor: url('./brush.png'), auto;
}

body.drawn {
  cursor: url('./cursor-move.png'), auto;
}

a {
  color: black;
  background: white;
  text-decoration: none;
  font-size: 2vw;
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 20px;
  border-radius: 50px;
}