.center-cirkel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #a71a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wielrat {
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 3px solid rgb(175, 0, 175);
  overflow: hidden;
  position: relative;
  transition: 5s;
}

.segment {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%, 1000% 0, 100% 100%);
  transform-origin: center;
}

/* Kleuren en Rotaties voor Elk Segment */
.segment1 { background-color: #1aa1a1; transform: rotate(0deg); z-index: 1;  }         /* Lichtgeel */
.segment2 { background-color: #7b578a; transform: rotate(40deg);}        /* Donkergroen */
.segment3 { background-color: #da7e53; transform: rotate(80deg);}        /* Lichtblauw */
.segment4 { background-color: #0d404d; transform: rotate(120deg);}       /* Lichtgeel */
.segment5 { background-color: #e4e445; transform: rotate(160deg);}       /* Oranje */
.segment6 { background-color: #1aa1a1; transform: rotate(200deg);}       /* Paars */
.segment7 { background-color: #F79763; transform: rotate(240deg);}       /* Donkergeel */
.segment8 { background-color: #e4e445; transform: rotate(280deg);}       /* Lichtblauw */
.segment9 { background-color: #0d404d; transform: rotate(320deg);}       /* Donkergroen */

/* Tekst binnen de segmenten */
.segment span {
  position: absolute;
  top: 63%;
  left: 39%;
  transform: translate(-50%, -120%);
  color: white;
  font-size: 14px;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  /* Test */
  display: grid;
  justify-content: end;
  rotate: 90px;
}

.segment{
  display: flex;
}

#wheelbtn {
  width: 170px;
  height: 90px;
  background-color: red;
  border-radius: 40px;
  color: white;
  left: -540px;
  position: relative;
  z-index: 1111;
  font-size: 34px;
  cursor: pointer;
}