* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f172a; /* change this color */
  color: #ffffff;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* Profile */
.profile {
  margin-bottom: 50px;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
}

.links {
  margin-top: 15px;
}

.links a {
  margin: 0 10px;
  text-decoration: none;
  color: #38bdf8;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

/* Projects */
.projects h2 {
  margin-bottom: 20px;
}

.card {
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  text-align: left;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin-bottom: 8px;
}
