body {
    background-color: black;
    color: azure;
    margin: 0;
    height: 100vh;
    transition: background-color 1.5s ease-in-out;
    font-size: 24px;
    padding: 0;
}


@keyframes fadeBackground {
    from {
        background-color: inherit;
    }
    to {
        background-color: inherit;
    }
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

#pInitial {
    font-size: 28px;
    max-width: 700px;
    line-height: 1.5;
}

#fog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: rgba(200, 200, 200, 0); /* starts invisible */
  backdrop-filter: blur(0px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.metric {
    position: fixed;
    bottom: 0;
    width: 100%; /* spans full width */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    z-index: 9999;
    flex-wrap: nowrap;
}

#question {
    font-size: 40px; 
    font-size: 40px;
}

.nMetric {
    margin: 0 15px; /* Space between items */
    display: flex;
    align-items: center;
    font-size: 16px; /* Adjust size as needed */
}
