body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  margin-bottom: 35px;
}

.project-list {
  list-style-type: none;
  padding: 0;
}

.project-list li {
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #fafafa;
}

.project-list a {
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
}

.project-list a:hover {
  text-decoration: underline;
}

.project-list p {
  margin: 10px 0;
  color: #666;
  line-height: 1.6;
}

.project-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.project-card {
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
  /* A subtle background color for differentiation */
  margin-bottom: 30px;
  border: 1px solid #ddd;
  /* A light border to outline the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  transition: transform 0.2s ease-in-out;
}

.project-card:hover {
  transform: translateY(-2px);
}

.contact-info {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #333;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
