body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  background: linear-gradient(135deg, #ffe6f0, #cce7ff); /* soft gradient background */
  color: #333;
  text-align: center;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2c3e50;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Buttons container */
.project-buttons {
  display: flex;
  flex-direction: column; /* vertical stack */
  gap: 20px; /* space between buttons */
  width: 100%;
  max-width: 400px;
}

/* Buttons styling */
.project-buttons .btn {
  display: block;               /* make <a> behave like button */
  text-decoration: none;
  text-align: center;
  padding: 16px 24px;
  border-radius: 14px;
  border: 2px solid #ff6b81;   /* border color */
  background: linear-gradient(45deg, #ff9aa2, #ff6b81); /* gradient button */
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.project-buttons .btn:hover {
  background: linear-gradient(45deg, #ff6b81, #ff4757);
  border-color: #ff4757;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 500px) {
  h1 {
     font-size: 1.8rem; 
  margin-bottom: 30px; }
  .project-buttons .btn {
     padding: 14px 20px;
     font-size: 1rem; }
}

@media (max-width: 350px) {
  h1 { font-size: 1.5rem; 
    margin-bottom: 25px; }
  .project-buttons .btn { padding: 12px 16px; 
    font-size: 0.95rem; }
}
