body {
  margin: 0;
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 100vh;
  background: #1e1e1e;
  color: white;
  overflow: hidden;
}

.controls {
  position: fixed;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
	text-align: center;
	margin: 16px
}

.webgl {
  width: 100%;
  height: 100%;
  position: absolute;
	cursor: grab
}

.webgl:active {
    cursor: grabbing;
}

	#result {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    z-index: 1;
    transition: opacity 0.3s ease;
    position: fixed;
    z-index: 999;
    top: 0;
}

#heads-btn,
#tails-btn {
  padding: 12px 24px;
  margin: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
	width: 100%
}

@media (max-width: 600px) {
  #heads-btn,
  #tails-btn {
    font-size: 16px;
  }

  #result {
    font-size: 20px;
  }
}

@media (min-width: 601px) {
  #heads-btn,
  #tails-btn {
    width: auto;
    font-size: 16px;
  }
}
