body {
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: gray;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: darkgray;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.project {
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
}

.project:last-child {
  border-bottom: none;
}

h2 {
  color: #0073b1; /* LinkedIn blue */
  margin: 0;
}

.description {
  color: #555;
  margin: 5px 0;
}

.duration {
  color: #777;
  font-style: italic;
  margin: 5px 0;
}

.skills {
  color: #0073b1; /* LinkedIn blue */
  margin: 5px 0;
}

.project-link {
  display: inline-block;
  margin-top: 10px;
  color: black; /* LinkedIn blue */
  text-decoration: none;
  border: 1px solid black;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.project-link:hover {
  background-color: gray;
  color: white;
}
