body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('./bg.jpg');
  background-size: cover;
}

/* Sets the background image for the wheel */
td.the_wheel {
  background-image: url(./wheel_back.png);
  background-position: center;
  background-repeat: no-repeat;
}

/* Do some css reset on selected elements */
h1,
p {
  margin: 0;
}

div.power_controls {
  margin-right: 70px;
}

div.html5_logo {
  margin-left: 70px;
}

/* Styles for the power selection controls */
table.power {
  background-color: #cccccc;
  cursor: pointer;
  border: 1px solid #333333;
}

table.power th {
  background-color: white;
  cursor: default;
}

td.pw1 {
  background-color: #6fe8f0;
}

td.pw2 {
  background-color: #86ef6f;
}

td.pw3 {
  background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable {
  cursor: pointer;
}

/* Other misc styles */
.margin_bottom {
  margin-bottom: 5px;
}

img.pin {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 16vw;
  height: 16vh;
  object-fit: contain;
  object-position: center;
  margin-top: -8vh;
  margin-left: -8vw;
}
#spin_button {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 5rem;
  --bs-btn-font-size: 8rem;
  --bs-btn-border-radius: 50rem;
  background: url('./btn_bg.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  border: 0;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#intro {
  z-index: 9999;
}
