/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 2rem;
}

/* Container */
.container {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Heading */
h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
}

/* Project List */
.project-list {
  list-style: none;
}

.project-list li {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center contents horizontally */
  text-align: center;  /* Center text */
}

.project-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.project-list h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #007bff;
}

.project-list p {
  margin-bottom: 1rem;
  font-size: 1rem;
  max-width: 90%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn:hover {
  background: #0056b3;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}
