/* Reset default browser styles */
body, h1, p, nav, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-size: 18px;
}

nav {
  background-color: #2c2c2c;
  padding: 10px;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
}

#wrapper {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

button {
  background-color: #4c4c4c;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 10px;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333333;
}

/* Adjust text color based on background brightness */
body.light-text {
  color: #333333;
}

body.dark-text {
  color: #e0e0e0;
}
