/* Main Styles */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
}

/* Profile Section */
.profile {
  text-align: center;
  margin: 4rem 0;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #2c3e50;
}

.title {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin: 0.5rem 0;
}

.experience {
  color: #95a5a6;
  margin: 0.25rem 0 2rem;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  color: #7f8c8d;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #2c3e50;
}

/* About Section */
.about {
  text-align: justify;
  max-width: 600px;
  margin: 0 auto 4rem;
  color: #34495e;
}

.about p {
  margin-bottom: 1rem;
}

/* Experience Section */
.experience {
  margin: 0 auto 4rem;
  max-width: 600px;
}

h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

li {
  color: #34495e;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 4px;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  color: #7f8c8d;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  margin: 0 auto 4rem;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 600px) {
  main {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  ul {
    grid-template-columns: 1fr;
  }
}
