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

a {
  color: inherit;
}

body {
  color: #eee;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.7rem;
  margin-bottom: 1rem;
  color: #f3c5ff;
}

#canvas {
  display: block;
  background-color: black;
}

.buttons-container {
  margin-top: 1rem;
  display: flex;
  column-gap: 1rem;
  font-size: 1rem;
}

.select-container {
  margin-top: 1rem;
}

button {
  all: unset;
  background-color: white;
  border-radius: 30px;
  font-weight: 500;
  color: black;
  padding: 0.5rem 1rem;
  cursor: pointer;
  min-width: 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
ion-icon {
  font-size: 1.4rem;
}

/* If kbd added later */
kbd {
  background-color: #eee;
  border-radius: 3px;
  border: 1px solid #b4b4b4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
    0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
  color: #333;
  display: inline-block;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  padding: 3px 5px;
  white-space: nowrap;
}
