body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
}

button, input[type=submit], select {
  background: #088743;
  border: 1px solid #0ec65c;
  color: #fff;
}

#admin-btn {
  color: #0ec65c;
  font-weight: bold;
}

.wheel-container {
  width: 1920px;
  height: 1080px;
  position: relative;
}

#canvas {
  display: block;
  margin: 0 auto;
}

.controls-info {
  position: absolute;
  top: 0;
  left: 0;
}

.controls-popup {
  padding: 30px;
  background: #555;
  color: #fff;
  text-align: center;
}
.controls-popup a {
  color: #fff;
}

.btn-spin {
  width: 200px;
  padding: 10px 20px;
  background: #088743;
  border: 2px solid #000;
  border-radius: 0;
  color: #fff;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-spin:hover {
  background-color: #05572b;
}

.winner {
  max-width: 600px;
  padding: 40px 60px;
  background: #088743;
  border: 3px solid #000;
  box-shadow: 0 5px 50px 25px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2em;
  line-height: 1.1;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.1s linear;
  position: absolute;
  top: 50%;
  left: 50%;
}
.winner.opened {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.winner .winner-title {
  margin-bottom: 15px;
}
.winner .winner-text {
  font-size: 1.5em;
  text-transform: uppercase;
}

/*# sourceMappingURL=app.css.map */
