body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f7fb;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: #64748b;
  margin-bottom: 2rem;
}

.projects {
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}
.project-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  color: white;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.25);
  text-align: center;
}

.project-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5),
              0 0 40px rgba(168, 85, 247, 0.5);
}

.subpage {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}

.subtitle {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.project-info {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.6;
}

.project-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
