* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16pt;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  user-select: none;
}

body {
  padding: 1rem;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

h1 {
  font-size: 200%;
}

#canvas {
  border: 1px solid black;
  flex: 0;
  align-self: flex-start;
}

.snapshot-container {
  position: relative;
  cursor: pointer;
}
.snapshot-container:hover {
  outline: 1px solid blue;
}
.snapshot-container .remove-button {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  width: 0.8rem;
  height: 0.8rem;
}
.snapshot-container .remove-button:hover {
  color: red;
}

/*# sourceMappingURL=styles.css.map */
