body {
  font-family: sans-serif;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

.slot-machine {
  width: 80%;
  height: 150px;
  border: 1px solid black;
	margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slot {
  width: 100%;
  height: 100%;
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

button {
  margin-top: 20px;
  padding: 25px;
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  width: 80%;
  box-sizing: border-box;
  background-color: #6495ED;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

#spinButton:hover {
  background-color: #4285F4;
}

#spinButton:active {
  background-color: #2169F3;
}

#game-title {
	font-size: 48px;
}
