* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  
  background-image: url('background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  height: 100vh;
}

.supH1 {
  font-size: 2vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1vh;
  margin-bottom: 2vh;
  text-align: center;
  width: 100%;
}

.header img {
  height: 15vh;
  width: auto;
  margin-right: 20px;
  /* Added to provide spacing between the image and the titles */
}

.titles {
  /* Newly added class for the titles container */
  display: flex;
  flex-direction: column;
  /* Stacks the h1 elements vertically */
  justify-content: center;
  /* Vertically centers the h1 elements within the titles container */
  align-items: center;
  /* Horizontally centers the h1 elements */
}

.header h1 {
  font-size: 4vh;
  margin: 0;
  /* Remove default margins for the h1 */
}

.header h1:nth-child(2) {
  /* Target the second h1 to apply specific styles */
  margin-top: 10px;
  /* Add a bit of spacing between the two h1 elements */
}



.slot-machine {
  display: flex;
}

.spinner-container {
  overflow: hidden;
  height: 50vh;
  /* 50px multiplied by 5 */
  width: 33vh;
  /* 50px multiplied by 5 */
  /* border: 15px solid black; */
  /* 3px multiplied by 5 */
  margin: 0 25px;
  /* 5px multiplied by 5 */
  border-radius: 20px
}

.spinner {
  transition: transform 1s ease-out;
}

.number {
  height: 50vh;
  /* 50px multiplied by 5 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40vh;
  /* 24px multiplied by 5 */
}

.number:nth-child(odd) {
  background-color: #00308f;
  /* This is a pale blue */
  color: #FFFFFF;
}

.number:nth-child(even) {
  background-color: #FFFFFF;
  color: #00308f;
}

#spinner2 .number:nth-child(odd) {
  background-color: #FFFFFF;
  color: #00308f;
}

#spinner2 .number:nth-child(even) {
  background-color: #00308f;
  /* This is a pale blue */
  color: #FFFFFF;
}

#spinButton {
  margin-top: 10vh;
  /* 20px multiplied by 5 */
  height: 7vh;
  width: 300px;
  background: #FFFFFF;
  font-size: 5vh;
  border-radius: 15px;
  color: #00308f;
  border: none;
}

.style-script-regular {
  font-family: "Style Script", cursive;
  font-weight: 400;
  font-style: normal;
}