/* style.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f0f2f5, #dce3ed);
  color: #222;
}

.container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #007bff;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.project-card {
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  color: #007bff;
  border: 2px solid #007bff;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  width: 80%;
  max-width: 400px;
}

.project-card:hover {
  background-color: #007bff;
  color: white;
  transform: scale(1.05);
}
