body {
  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0
}

.container {
  position: fixed;
  bottom: 600px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
}

.text {
  font-family: "Lucida Console", "Courier New", monospace;
  letter-spacing: 10px;
  font-size: 70px; /* Adjust font size as needed */
  text-align: center;
  margin-bottom: 10px; /* Space between text and buttons */
}

.manual {
  font-size: 30px; /* Adjust font size as needed */
  text-align: right;
  bottom: 100px;
}

.button {
  display: block;
  background-color: transparent;
  border: 2px solid black;
  color: black;
  width: 800px; /* Set a fixed width */
  height: 150px; /* Set a fixed height */
  margin: 15px auto; /* Center buttons and add spacing */
  text-align: center;
  text-decoration: none;
  letter-spacing: 10px; /* Adjusts the space between letters */
  font-size: 60px; /* Adjust font size to fit */
  font-family: "Lucida Console", "Courier New", monospace;
  line-height: 150px; /* Center text vertically */
  cursor: pointer;
  border-radius: 12px;
}

.button:hover {
  background-color: blue
}

.button:active {
  background-color: pink;
  box-shadow: 0 5px #666;
}

.back-button {
  position: fixed;
  bottom: 150px;
  right: 50px;
}

/* Container for stacking START and MANUAL buttons vertically */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the buttons horizontally */
  position: fixed;
  bottom: 150px;
  right: 50px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  color: black;
  text-align: center;
}