body, html {
  width:  100%;
  height: 100%; /* Ensures that the html and body tags take up the full viewport height */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.bg{
  background-image: url('bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}



#numberInput {
  font-size: 50px;       /* Set the font size to 24px */
  border: none;          /* Remove the border */
  outline: none;         /* Remove the outline to disable the focus highlight */
  border-bottom: 4px solid black; /* Add underline */
  width: 200px;          /* Set a fixed width or make it responsive as needed */
  text-align: center;    /* Center the text inside the input */
  margin-top: 500px;
  margin-bottom: 10px;   /* Space between the input and the mic button */
  opacity: 40%;
}

#micButton {
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 10px;
  margin-top: 10px;  /* Added margin to create space between the input and button */
}