body {
    font-family: 'Courier New', monospace;
    background-color: #d5763d;
    color: #333;
    margin: 0px;
  }
  
  header, footer {
    padding: 1em;
    text-align: center;
  }
  
  nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #060606;
  }
  
  h1, h2 {
    color: #333;
  }
  
  img {
    border-radius: 8px;
  }

  details {
    border: 1px solid #d5763d;
    border-radius: 0px;
    padding: 10px;
    margin: 20px 0;
  }
  
  summary {
    font-weight: bold;
    cursor: pointer;
  }
  
  a {
    color: #040404;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .square-image {
    width: 300px;
    height: 300px;
    object-fit: cover; /* Optional: keeps image from looking stretched */
    border-radius: 8px; /* Optional: adds rounded corners */
  }
  

  .small-image {
    width: 300px;
    object-fit: cover; /* Optional: keeps image from looking stretched */
    border-radius: 8px; /* Optional: adds rounded corners */
  }


  /* 1) Full viewport height hero */
#hero-time {
    height: 100vh;          /* Full browser height */
    width: 100%;            /* Full width */
    display: flex;          /* So we can center items */
    justify-content: center;/* Center horizontally */
    align-items: center;    /* Center vertically */
  }
  
  /* 2) Style your time display */
  #user-time-section {
    font-size: 72px;
    text-align: center;
  }
  


  /* 1) The lightbox container - hidden by default */
.lightbox {
  display: none;                  /* Hidden unless targeted */
  position: fixed;               /* Stays in one place */
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark overlay */
  text-align: center;            
  z-index: 9999;                 /* On top of everything */
}

/* 2) Show the lightbox when it's the URL target (e.g. #img1) */
.lightbox:target {
  display: block; 
}

/* 3) The close button (an "X" in the top-right corner) */
.lightbox .close {
  position: absolute;
  top: 20px; 
  right: 30px;
  text-decoration: none;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}

/* 4) The full-size image inside the lightbox */
.lightbox img {
  max-width: 90%;
  max-height: 80vh;    /* So it fits on the screen */
  margin-top: 5%;      /* Moves it down a bit from top edge */
  border-radius: 8px;  /* Optional: round corners for consistency */
}

  

