html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}  

#about p {
  font-size: 1.1rem;
  line-height: 1.6;
}

#about a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

#about a:hover {
  background-color: #0056b3;
}

.nav-link:active{
  color: #0056b3;
}

.project-img{
  height: 200px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 768px) {
  #about .col-md-4 {
    margin-bottom: 2rem;
  }
}