body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #0e0e0e;
  color: #f4f4f4;
  text-align: center;
  line-height: 1.6;
}

header {
  background-color: #1e1e1e;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 2.5rem;
  color: #00c4ff;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #00c4ff;
}

.about-container {
  max-height: 600px;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 12px;
  background-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  margin: 1rem auto;
}

.about-list {
  text-align: left;
  line-height: 1.6;
  padding: 0 1rem;
}

.about-list li {
  margin: 0.7rem 0;
}

.about-list .image-item {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.about-list .image-item img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list .image-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#contact a {
  color: #00c4ff;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 2rem;
  padding: 1rem;
  background: #1e1e1e;
  color: #aaa;
  font-size: 0.9rem;
}

html {
  scroll-behavior: smooth;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 2rem auto;
}

.skill-card {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.skill-card h3 {
  color: #00c4ff;
  margin-bottom: 0.5rem;
}

.skill-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

