body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

header, section, footer {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

header {
  text-align: center;
}

#start-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

#start-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}


#terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 1s ease;
}

.terminal {
  color: #33ff33;
  font-family: monospace;
  padding: 20px;
  white-space: pre-wrap;
  max-width: 800px;
  border-radius: 5px;
  box-shadow: 0 0 10px #0f0;
}

#terminal-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}



.resume-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

.resume-button:hover {
  background: #ccc;
}

.project {
  margin-bottom: 20px;
}

ul {
  list-style-type: square;
}

a {
  color: #1e90ff;
}

button#toggle-theme {
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
}

body.light-mode {
  background-color: #fff;
  color: #000;
}

body.light-mode .resume-button {
  background: #000;
  color: #fff;
}

body.light-mode a {
  color: #0077cc;
}
