body {
  font-family: 'Lucida console', monospace;
  text-align: center;
  background-color: #008080;
  color: white;
}

.image-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
  gap: 25px;
  text-align: center;
  padding: 50px;
  min-height: calc(100vh - 30px);
  box-sizing: border-box;
}

.image-links-container a {
  text-decoration: none;
  color: white;
}

.image-links-container img {
  width: 45px;
  height: auto;
}

.image-links-container p {
  margin-top: 0px; /* Space between image and text */
  font-size: 10px
}

#popup-1, #popup-2, #popup-3 {
  display: none; /* Hide the popup initially */
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/* Start Bar Styles */
.start-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-color: #c3c3c3; /* Windows 95 gray */
  border-top: 2px solid white;
  border-bottom: 2px solid gray;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  font-family: 'Lucida console', monospace;
  z-index: 1000;
  box-shadow: 0 -2px #fffdfc, 0 -4px #cce9eb;
}

.start-button {
  background-color: #c3c3c3;
  border: 2px outset white;
  padding: 5px 15px;
  font-weight: bold;
  font-family: 'Lucida console', monospace;
  cursor: pointer;
}

.start-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.start-icons img {
  vertical-align: middle;
}

.clock {
  font-size: 12px;
}
