body {
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: Consolas, monospace;
  margin: 0;
  padding: 0;
}
.header {
  background-color: #333333;
  padding: 40px 0;
  text-align: center;
}
.header h1 {
  font-size: 28px;
  margin: 0;
  color: #e7ab5d;
}
.container {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #252526;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #c3e88d; /* Kolor nagłówków sekcji */
}
.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-list-item {
  padding: 10px;
  margin-bottom: 10px;
  background-color: #1e1e1e;
  border-radius: 4px;
}
.project-title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #8dc8da;
}
.project-description {
  font-size: 14px;
  color: #bbbbbb;
}
.project-link {
  display: inline-block;
  padding: 5px 10px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}
.project-link:hover {
  background-color: #ffd700;
  color: #000000;
}
.contact {
  background-color: #333333;
  padding: 20px;
  text-align: center;
}
.contact p {
  margin-bottom: 5px;
}
.contact-link {
  color: #ffffff;
  text-decoration: none;
}
.footer {
  background-color: #1e1e1e;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}
