body {
    background-color: #1e1e1e;
    padding-top: 60px;
    overflow: auto;
}

.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: #cccccc
    }

#title {
    color: goldenrod;
    text-align: center;
}

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

@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%;
}
