.container {
  position: absolute;
  left: 20%;
}
.roulette {
  position: absolute;
  margin: 0 auto;
  width: 300px;
  height: 300px;
  left: 40%;
  background-color: red;
  background-image: url('phieneasroulette.png');
  border-radius: 300px;
}

.spinner {
  cursor: pointer;
  color: red;
  font-weight: bold;
  border: none;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 125px;
  left: 125px;
  border-radius: 100%;
  z-index: 1000;
  background-color: blue;
}

.spinner .pointer {
  position: absolute;
  width: 0; 
  height: 0; 
  top: -8px;
  left: 15px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid blue;
}
