/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    height: 100vh;
    background-color: #000; /* Deep black background */
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  /* Counter styles */
  #counter {
    position: fixed;
    bottom: 2vh;       /* 2% of viewport height */
    right: 2vw;        /* 2% of viewport width */
    /* Larger, attractive font size with responsiveness */
    font-size: clamp(13vw, 17vh, 27vw);
    font-weight: 200; /* Light weight for modern look */
    color: #ffffff; /* White color for contrast */
    line-height: 1;
    text-align: center;
    /* Optional: Add text shadow for glow effect */
    text-shadow: 2px 2px 8px rgba(255,255,255,0.5);
    /* Add a subtle background for better readability if needed */
    /* background: rgba(0,0,0,0.2); */
    padding: 20px;
    border-radius: 10px;
  }