/* Page-wide styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: url('void.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: black;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
/* Button styling */
.button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 16px;
  background-color: transparent;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  background-color: black;
  color: white;
}
body.log-body {
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: black;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 2em;
}

.log-container {
  max-width: 800px;
  margin: auto;
  padding: 1em;
}

.log-title {
  text-align: center;
  margin-bottom: 2em;
  letter-spacing: 4px;
}

.accordion {
  background-color: #eee;
  color: #333;
  cursor: pointer;
  padding: 1em;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  transition: background-color 0.2s ease;
  margin-bottom: 4px;
}

.accordion:hover {
  background-color: #ddd;
}

.panel {
  display: none;
  background-color: #f9f9f9;
  color: #111;
  padding: 1em;
  overflow: hidden;
  line-height: 1.6;
}

.return-button {
  display: block;
  margin: 2em auto 0;
  text-align: center;
  background: black;
  color: white;
  padding: 0.7em 2em;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid white;
  transition: background 0.3s ease;
}

.return-button:hover {
  background: white;
  color: black;
}

/* Container for content */
.content {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}