body{
    background-image: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)), url('../Backgrounds/entireweb.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
}
.about-heading {
  font-family: 'Ambar Pearl', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  
}

.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.about-img:hover {
  transform: scale(1.05);
}