/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f5f7fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.6;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  border: 1px solid #e9ecef;
}

/* Header styles */
header {
  margin-bottom: 3rem;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.subtitle {
  color: #7f8c8d;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Projects table styles */
.projects-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project-row {
  transition: transform 0.3s ease;
}

.project-row:hover {
  transform: translateY(-5px);
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-item {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-item:hover {
  border-color: #6c757d;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(108, 117, 125, 0.15);
}

.project-item h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-item p {
  color: #6c757d;
  font-size: 1rem;
  font-weight: 400;
}

/* Footer styles */
footer {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}

footer p {
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  
  .container {
    padding: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .project-item {
    padding: 1.5rem;
  }
  
  .project-item h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.7rem;
  }
  
  .project-item {
    padding: 1.25rem;
  }
}