* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  font-family: 'Arial', sans-serif;
  background: black;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  color: white;
}


.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10%;
}

#wheel-with-result td {
  border: none;
}

.roulette-wheel-with-result {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}


.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  margin: 0 0 1em 1em;
  position: relative;
  touch-action: none;
  overflow: visible;
}


.roulette-wheel .wheel {
  height: 100%;
  position: absolute;
}

img {
  width: 100%;
  height: auto;
}


.layer-2 {
  z-index: 1;
}

.layer-3 {
  z-index: 2;
}

.layer-4 {
  z-index: 3;
}

.layer-5 {
  z-index: 4;
}


.roulette-wheel circle {
  cursor: pointer;
  fill: transparent;
}

.roulette-wheel .ball-container { 
  position: relative;
  width: 240.31px;
  height: 240.31px;
  z-index: 6;
}

.roulette-wheel .ball {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 7px;
  background: #fff radial-gradient(circle at 5px 5px, #fff, #444);
  box-shadow: 1px 1px 4px #000;
  transform: translateY(-116px);
  top: 75%;
  left: 48%;
  will-change: transform;
  z-index: 6;
}



.roulette-board {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}


table {
  border-collapse: collapse;
}


tbody {
  border-radius: 10%;
  font-size: 1rem;
}


td{
  position: relative;
  border: .3rem solid white;
}

.cell-N {
  border: none;
  padding: 10px;
}

.dropzone {
  width: 8rem;
  height: 4.5rem;
  text-align: center;
  vertical-align: middle;
  color: white;
}


.red {
  background-color: red;
}

.black {
  background-color: black;
}

.green {
  background-color: green;
}


#draggableImage {
  position: absolute;
  top: 20%;
  left: 20%;
  align-items: center;
  height: 2rem;
  width: auto;
  cursor: grab;
  z-index: 1;
}

#draggableImage:active {
  cursor: grabbing;
}

#play-button {
  position: relative;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3%;
  padding: 1% 2%;
  border-radius: 45%;
  font-size: 200%;
  background-color:gold;
  cursor: pointer;
  border-color: black;
}

.roulette-rules {
  color: gold;
  cursor: pointer;
  margin-bottom: 1em;
  text-align: center;
}

#play-button:hover {
  background-color: yellow;
}

.roulette-rules:hover {
  color: yellow;
}

#data-display {
  color: #fff;
  position: absolute;
  top: 0%;
  left: 100%;
}

.pink-panther {
  mix-blend-mode: screen;
  top: 25%;
  position: fixed;
  max-width: 10%;
  z-index: 15;
}

.pink-panther1 {
  mix-blend-mode: multiply;
  top: 25%;
  position: fixed;
  max-width: 10%;
  z-index: 51;
}

.pink-panther2 {
  mix-blend-mode: screen;
  top: 25%;
  position: fixed;
  max-width: 10%;
  z-index: 15;
}


@media (max-width: 576px) {
  .roulette-board {
    max-width: 100%;
  }

  .dropzone {
    width: 1.6rem;
    height: 1.4rem;
    text-align: center;
    vertical-align: middle;
    color: white;
  }

  .container {
    margin-top: 20%;
  }

  #draggableImage {
    height: 1rem;
    width: auto;
  }
}