* {
    font-family: "Orbitron", sans-serif;
    padding: 0;
    margin: 0;
    justify-content: center;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 2rem;
    height: 100vh;
    padding-top: 3rem;
    background-color: #f1f1f1;
  }
  
  .container h1 {
    color: #175cff;
  }
  
  .timer {
    flex-wrap: wrap;
    display: flex;
    font-size: 55px;
    font-weight: bold;
    color: #333;
  }
  
  .time {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
    color: #172953;
    min-width: 90px;
  }
  
  .separator {
    font-size: 60px;
    padding: 0 10px;
    color: #525763;
  }
  
  #milliseconds {
    font-size: 30px;
    color: #525763;
  }
  
  .buttons {
    flex-wrap: wrap;
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
  }
  
  .btn:hover {
    transform: scale(1.1);
  }
  
  #startBtn {
    background-color: #175cff;
    color: #fff;
  }
