* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
  }

  body {
    background-color: #0a0a0f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .stopwatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111;
    border: 2px solid #00f7ff;
    border-radius: 20px;
    padding: 50px 250px;
    box-shadow: 0 0 25px #00f7ff44, inset 0 0 10px #00f7ff22;
    width: 300px;
    font-family: "poppins", "sans-serif";
  }

  .time-display {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #00f7ff;
    text-shadow: 0 0 15px #00f7ff;
  }


  .buttons {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
  }

  button {
    background: none;
    border: 2px solid #00f7ff;
    color: #00f7ff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    font-family: "poppins", "sans-serif";
    margin-top: 40px;
    font-style: italic;
  }

  button:hover {
    background: #00f7ff;
    color: #111;
    box-shadow: 0 0 15px #00f7ff;
    transform: translateY(-2px);
  }
