/* Set the background image and properties */
body { 
  background: linear-gradient(rgb(61, 61, 61), black);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Set the text color and font for headings */
h1, h3 { 
  color: rgb(255, 255, 255);
  font-family: "consolas", monospace;
}

/* Style for the main title */
.title { 
  text-align: center;
  margin-top: 100px;
}

/* Set the text color and font for paragraphs */
p { 
  color: white;
  font-family: "consolas", monospace;
}

/* Style for the images */
img {
  display: block;
  margin: 10px auto;
  border: 5px solid rgb(77, 77, 77);
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Style for the text links */
.text-links:link{
  color: #ffffff;
  text-decoration: underline;
}
.text-links:visited{
  color: #3a3a3a;
  text-decoration: underline;
}
.text-links:hover{
  color: #615151;
  text-decoration: underline;
}
.text-links:active{
  color: #493e3e;
  text-decoration: underline;
}

/* Style for the content box */
#box1 { 
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgb(255, 255, 255);
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}

/* Style for the navigation button group */
.button-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #222;
  z-index: 1000;
  box-sizing: border-box;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Style the links like buttons */
.button-group a {
  text-decoration: none;
  color: white;
  background-color: #444;
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-family: "consolas", sans-serif;
  font-size: 16px;
  display: inline-block;
  flex-shrink: 0;
  transition: background-color 0.3s ease,
    transform 0.2s ease;
}

/* Hover effect */
.button-group a:hover {
  background-color: #666;
  border-color: #b9b9b9;
  transform: translateY(-2px);
}

/* Click effect */
.button-group a:active {
  transform: scale(0.96);
}

/* Add a margin to your body so the buttons don't cover your text */
body {
  margin-top: 60px;
}