:root {
  --violet: #8f00e7;
  --night: #042b6f;
  --yellow: #ffc700;
  --virgil: #f0f0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-select: none;
  user-select: none;
  font-family: "Outfit", sans-serif;
  color: var(--night);
}

html {
  font-size: 16px;
}

header {
  padding: 36px 36px;
  /* height: 10vh; */
  font-size: 2rem;
  background-color: var(--virgil);
}

main {
  width: 100vw;
  background-color: var(--virgil);
  position: fixed;
  top: 0;
}

button {
  background-color: var(--violet);
  color: var(--virgil);
  font-weight: 700;
  padding: 0 16px 4px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  font-size: 1.5rem;
  height: 52px;
}

button:active {
  border: none;
}

button.options {
  margin: 8px 6px;
}

button.options.current {
  background-color: var(--yellow);
  color: var(--night);
}

.active-button {
  font-size: 2rem;
  margin-left: 0.5rem;
}

#options-container {
  height: 100vh;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  background-color: var(--virgil);
  top: -100vh;
  z-index: 100;
  transition: top 0.5s;
  max-height: 100vh;
  overflow-y: scroll;
}

#options-container.showing {
  top: 0vh;
}

#sketch {
  width: 100%;
  height: 90vh;
}

#actionMsg {
  position: fixed;
  display: block;
  bottom: 36px;
  right: 36px;
  max-width: 240px;
  font-size: 2rem;
}

#msg-arrow {
  animation-name: arrow-animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes arrow-animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
