body {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  background-color: black;
  color: #00FFFF; 
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  }  

  h1 {
    font-size: 46px;
    /*margin-bottom: 20px;*/
  }
  
  input[type="number"] {
    font-size: 16px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100px; /* Adjust width as needed */
  }
  
  button {
    font-size: 24px;
    margin: 5px;   
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #countdown-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  }

  #timer {
  font-size: 15vw;
  } 
 
  .reset-button {
  background-color: #36454F;
  color: black;
  }

  #resetButton.reset-button-top {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  }
 

 .hidden {
  display: none;
 }

  