* {
  font-family: monospace, serif, sans-serif;
}
button {
  border-radius: 8px;
  border: 2px solid crimson;
  font-size: 16pt;
  padding: 5px 10px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 0.3s;

  &:hover {
    transform: rotate(4deg);
  }
  &:active {
    transform: translateY(4px);
  }
}

.holder {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-div {
  background-image: url("./assets/slot-machine-bg.jpg");
  height: 200px;
  width: 400px;
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}
.number {
  font-size: 40px;
  margin: 10px;
  padding-bottom: 10px;
}

.spin {
  background-color: crimson;
  color: white;

  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;

    &:hover, &:active {
      transform: none;
      background-color: crimson;
      color: white;
    }
  }
  &:hover {
    background-color: white;
    color: crimson;
  }
  &:active {
    background-color: crimson;
    color: white;
  }
}
.auto-spin {
  background-color: white;
  color: crimson;

  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    
    &:hover, &:active {
      transform: none;
      background-color: white;
      color: crimson;
    }
  }
  &:hover {
    background-color: crimson;
    color: white;
  }
  &:active {
    background-color: white;
    color: crimson;
  }
}
.money {
  margin: 20px 0px;
  & > p {
    margin: 0px;
  }
}