body {
  font-family: 'Poppins', sans-serif;
  background: ;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  text-align: center;
  background:#ADD8E6;
  padding: 2rem;
}

main {
    display: flex;
    flex-wrap: wrap;
    background-color: ;
} 

.about, .education, .services, .portfolio {
    margin: 1rem auto;
    background: #87CEFA;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    gap: 5px;
    padding: 4px;
}

.about:hover, .education:hover, .services:hover, .portfolio:hover   {
    transform: scale(1.1)
} 

.profile img {
  border-radius: 100%;
  border: 2px solid black;
  margin: 0rem auto;
  display: block;
}

.service-card {
  background: white;
  margin: 1rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery img {
  width: 100%;
  max-width: 300px;
  margin: 0.5rem;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #f0f0f0;
  font-size: 0.9rem;
}
