body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #1f2937;
  color: white;
  padding: 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
}

header a {
  margin-right: 1rem;
}

.section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  color: #1f2937;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3rem;
}

ul {
  padding-left: 1.2rem;
}

.project {
  margin-bottom: 1.5rem;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--aboutme {
  grid-template-columns: 1fr 2fr;
}

.Education ul {
  list-style-type: none;
}

.profile-picture {
  width: 120px;
  height: 120px;
  margin: 1rem auto;
  display: block;
}

.styled-image {
  width: 120px;
  height:120px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.styled-image:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
