
/* styles.css */

/* General styles */
body {
  margin: 0;
  font-family: 'kanit', sans-serif;
  color: #333;
}

/* Container for better alignment */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Section styling */
.project-section {
  background-color: #fafafa;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Title styling */
.project-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Paragraphs */
.project-description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
}

/* Emphasized numbers */
.project-description strong {
  color: #0077b6;
  font-weight: bold;
  margin-right: 4px;
}
