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

html,
body {
  background-color: #14161a;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  flex: 0;
  box-shadow: rgb(0 0 0 / 20%) 0px 0px 100px 0px;
}

#messageContainer {
  position: fixed;
  top: 0.5em;
  left: 0;
  width: auto;
}
#message {
  background: white;
  padding: 0.5rem 0.75em;
  box-shadow: 4px 4px 0px 1px #0e67c494;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 300;
  left: -110%;
  transition: left 500ms;
  position: relative;
}

#message.show {
  left: 0%;
}
