html {
  background: #090909;
}

a, p {
  color: whitesmoke;
  font-family: sans-serif;
  font-size: 0.8rem;
}

.wrapper {
  margin: 0 auto;
  width: 500px;
}
.wrapper canvas {
  /* border-bottom: 1px whitesmoke dashed; */
}
.wrapper .instructions {
  padding-bottom: 50px;
  position: relative;
}
.instructions {
  /* border: solid 2px rgba(255,255,255,0.3); */
  border-radius: 100px;
  border-bottom: 1px solid
}
.wrapper .instructions p {
  text-align: center;
  position: absolute;
  width: 100%;
}
.wrapper .instructions p:first-child {
  text-align: left;
}
.wrapper .instructions p:last-child {
  text-align: right;
}

.info-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 1000;
}

.info-box {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: #111;
  border: 1px solid #444;
  padding: 10px;
  display: none;
  font-size: 0.75rem;
  z-index: 1000;
}

.info-icon:hover + .info-box {
  display: block;
}


.control-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(30,30,30,0.8);
  border: 1px solid #555;
  padding: 10px;
  font-size: 0.75rem;
  font-family: sans-serif;
  color: white;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  border-radius: 5px;
}
.control-panel label {
  display: block;
  margin-bottom: 5px;
}
h1, h2, h3, h4 { 
  color: #FFF;
}
h2 a {
  font-size: inherit;
}
.auto-panel {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #555;
  padding: 10px;
  font-size: 0.75rem;
  font-family: sans-serif;
  color: white;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  border-radius: 5px;
  text-align: center;
}
.auto-panel label {
  display: block;
  margin-bottom: 5px;
}
