body {
  display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    background: rgba(209, 163, 61, 0.1);
    overflow-x: hidden;
}

.wrapper {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 60px;
  margin-top: 10px;
  margin-bottom: 100px;
}

h2 {
  font-weight: 400;
}

p {
  font-weight: 300;
}

i {
  font-size: 45px;
  font-style: normal !important;
}

.hero-emoji {
  font-size: 60px;
}

.showAccount,
.showBalance {
  font-weight: normal;
}

.window {
  font-size: 40px;
  font-family: arial, helvetica, sans-serif;
  border: 3px solid black;
  border-radius: 10px;
  margin: 5px;
}

.slot-machine > .window {
  overflow: hidden;
  display: inline-block;
}

.slot-machine > .window > .slider > .symbol {
  text-align: center;
  display: table;
}

.btn {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 30px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 3px solid #000;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  color: #fff;
  background-color: #000;
}

.btn:disabled {
  color: rgb(255, 255, 255);
  background-color: rgb(180, 180, 180);
  border: 3px solid rgb(180, 180, 180);
  cursor: not-allowed;
}

input {
  position: relative;
  background: #fff;
  width: 100%;
  border: none;
  border: 0.1px solid rgb(121, 121, 121);
  border-radius: 10px;
  font-size: 18px;
  color: #000;
  line-height: 1.2;
  height: 40px;
  padding: 0 20px;
  width: 80px;
  height: 50px;
  transition: all 0.2s ease-in-out;
}

textarea:focus,
input:focus {
  border: 3px solid #000;
  outline: none;
  height: 47px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(121, 121, 121);
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(121, 121, 121);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(121, 121, 121);
}

#emoji-rain {
  top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    user-select: none;
}

.slot-machine-h3 {
  margin-top: 100px;
}

#slot-machine {
  margin-bottom: 20px;
}

#win-button {
  display: none;
}
