
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 1.5rem;
  background-color: #fff; 
  color: #222222; 
}

main {
  max-width: 48rem;
  margin: 0 auto;
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111111;
}

header p {
  font-size: 1.125rem;
  color: #555555;
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid #dddddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

ul {
  list-style: disc inside;
  padding-left: 0;
  color: #444444;
}

ul li {
  margin-bottom: 1rem;
}

a {
  font-weight: 600;
  color: #007acc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #005999;
  text-decoration: underline;
}

footer {
  margin-top: 3rem;
  text-align: center;
  color: #777777;
  font-size: 0.875rem;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

main {
  animation: fadeIn 0.8s ease forwards;
}


.social-icon {
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.skill-badge {
  background-color: #007acc; 
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 122, 204, 0.3);
  display: inline-block;
  margin: 0.25rem;
}
