body {
  text-align: center;
  padding: auto;
  margin: auto;
  background-color: rgb(8, 36, 21);

}

:root {
  --outer-shadow:
    0 0 0.1vw 0.4vw rgb(250, 0, 0),
    0 0 0.4vw 0.6vw rgb(0, 0, 250),
    0 0 1vw 0.4vw rgb(0, 250, 0),
    --backgroundColor: rgba(246, 241, 209);
  --colorShadeA: rgb(106, 163, 137);
  --colorShadeB: rgb(121, 186, 156);
  --colorShadeC: rgb(150, 232, 195);
  --colorShadeD: rgb(187, 232, 211);
  --colorShadeE: rgb(205, 255, 232);
}

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--colorShadeA);
  font-weight: 700;
  text-transform: uppercase;
  font-family: inherit;
}

/*----------slot randomly------------*/
.Slot {
  width: 88%;
  height: 400px;
  overflow: hidden;
  margin: auto;
  margin-top: 40px;
  border: 7px solid rgb(85, 63, 5);
  background-color: rgb(65, 31, 5);
  border-radius: 8px;
  box-shadow: var(--outer-shadow);

}

#ScreenSlot {
  height: 500px;
  position: relative;
  overflow: hidden;
}

ul {
  list-style: none;
}

ul li {
  border: 3px solid rgb(186, 143, 34);
  border-radius: 10px;
  width: 98%;
  margin: 1px 0;

  background-image: url(images/new4.jpg)
}

.reels {
  width: 30%;
  position: absolute;
  padding: 0px;
}

.reels:nth-child(1) {
  left: 2%;
}

.reels:nth-child(2) {
  left: 34%;
}

.reels:nth-child(3) {
  right: 2%;
}

.reel img {
  display: block;
  margin: auto;
  height: 290px;
  max-width: 70%;
}

/*-----stop button------*/
button.threeD_Btn {
  margin: 20px 200px 20px 200px;
  padding: 1em 2em;
  border: 2px solid var(--colorShadeA);
  border-radius: 1em;
  background: var(--colorShadeE);
  transform-style: preserve-3d;
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
}

button.threeD_Btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colorShadeC);
  border-radius: inherit;
  box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
  transform: translate3d(0, 0.75em, -1em);
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
}

button.threeD_Btn:hover {
  background: var(--colorShadeD);
  transform: translate(0, 0.375em);
}

button.threeD_Btn:hover::before {
  transform: translate3d(0, 0.75em, -1em);
}

button.threeD_Btn:active {
  transform: translate(0em, 0.75em);
}

button.threeD_Btn:active::before {
  transform: translate3d(0, 0, -1em);
}

#StartBtn {
  --colorShadeA: rgb(170, 101, 12);
  --colorShadeB: rgb(212, 129, 22);
  --colorShadeC: rgb(197, 128, 38);
  --colorShadeD: rgb(194, 164, 13);
  --colorShadeE: rgb(241, 249, 95);
  display: inline-block;
  padding: 20px 40px;
  background-color: rgb(234, 204, 165);
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
}