body {
    background-color: #1e1e1e;
    padding-top: 60px;
    overflow: auto;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.title_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.typed-text {
      font-family: monospace;
      border-right: 2px solid black;
      white-space: nowrap;
      display: inline-block;
      padding-right: 5px;
      top: 100%;
      margin-top: 20px;
      color: rgb(35, 94, 223);
}

#title {
    color: rgb(35, 94, 223);
    text-align: center;
}

.main-content {
  background-color: #2a2a2a;
  color: #e0e0e0;
  padding: 20px;
  border-left: 5px solid rgb(35, 94, 223); /* left-side outline */
  border-radius: 4px;
  box-shadow: -2px 0 6px rgb(35, 94, 223); /* subtle gold glow */
  max-width: 800px;   /* max width on desktop */
  margin-bottom: 5%;
  margin: 0px auto 15% auto;     /* center horizontally */
  overflow: scroll;
}

@media (max-width: 600px) {
  .main-content {
    padding: 16px;
    font-size: 16px;
    max-width: 90vw;
  }
}

#menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: goldenrod;
  color: black;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1001;
  border-radius: 5px;
}

#sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Hidden by default */
  width: 250px;
  height: 100%;
  background-color: #1e1e1e;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

#sidebar a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #eee;
  font-size: 1.1rem;
}

#sidebar a:hover {
  background-color: #333;
}

/* Sidebar active class */
#sidebar.active {
  left: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 0;
  z-index: 1000;
  border-top: 2px solid #333;
  margin-top: 50px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
  border-radius: 100%;
}

.footer-icon:hover {
  transform: scale(1.2);
}

#gamemodes {
  list-style-type: none;
}

summary {
  cursor: pointer;
}

#Datum {
  font-size: smaller;
  color: #666666;
}

.dino-img {
    position: absolute;
    left: 40%;
    border: black 2px solid;
    border-radius: 15%;
}

.logo-button {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.logo-button:hover {
  background-color: #0d6efd;
}

.logo-button img {
  height: 20px;
  width: 20px;
}

.header {
    position: absolute;
    top: 0px;
    width: 99.5%;
}

#katten-img {
    width: 95%;
    height: auto;
}

.main-content-N_P {
  background-color: #2a2a2a;
  color: #e0e0e0;
  padding: 20px;
  border-left: 5px solid aqua; /* left-side outline */
  border-radius: 4px;
  box-shadow: -2px 0 6px aqua; /* subtle gold glow */
  max-width: 800px;   /* max width on desktop */
  margin-bottom: 5%;
  margin: 0px auto 10% auto;     /* center horizontally */
}

.typed-text-N_P {
    font-family: monospace;
    border-right: 2px solid black;
    white-space: nowrap;
    display: inline-block;
    padding-right: 5px;
    top: 100%;
    margin-top: 20px;
    color: aqua;
}

#title-N_P {
    color: aqua;
    text-align: center;
}

#hond-img {
    width: 95%;
    height: auto;
}

.main-content-Koen {
  background-color: #2a2a2a;
  color: #e0e0e0;
  padding: 20px;
  border-left: 5px solid rgb(223, 238, 8); /* left-side outline */
  border-radius: 4px;
  box-shadow: -2px 0 6px rgb(223, 238, 8); /* subtle gold glow */
  max-width: 800px;   /* max width on desktop */
  margin-bottom: 5%;
  margin: 0px auto 10% auto;     /* center horizontally */
}

.typed-text-Koen {
    font-family: monospace;
    border-right: 2px solid black;
    white-space: nowrap;
    display: inline-block;
    padding-right: 5px;
    top: 100%;
    margin-top: 20px;
    color: rgb(223, 238, 8);
}

#title-Koen {
    color: rgb(223, 238, 8);
    text-align: center;
}

#katstoel-img {
    width: 50%;
    height: auto;
}

.footer-spacer {
  height: 70px; /* match or slightly exceed your footer height */
}