/* css styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* General page styling */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Expand text width for the main content */
.main-content {
  max-width: 1000px; /* Adjust to desired width */
  margin: 0 auto;
  padding: 0 20px; /* Optional padding for readability */
}


/* Header styling for name and intro */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
}

/* Divider styling */
.divider {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1.5em 0;
}



/* Skills section styling */
.skills-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between skills */
  justify-content: center; /* Center align */
  margin-top: 1em;
  max-width: 700px; /* Set max-width to control two rows */
}

.skill {
  font-size: 1em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  color: #333;
  flex: 1 1 30%; /* Flex basis adjusted for two rows */
}

/* Unique icons for each skill */
#experimental-design::before {
  content: "🎲"; /* Icon for Experimental Design */
  margin-right: 5px;
}

#survey-methodology::before {
  content: "✅"; /* Icon for Survey Methodology */
  margin-right: 5px;
}

#machine-learning::before {
  content: "💻"; /* Icon for Machine Learning */
  margin-right: 5px;
}

#causal-inference::before {
  content: "➡️"; /* Icon for Causal Inference */
  margin-right: 5px;
}

#nlp::before {
  content: "🖺"; /* Icon for NLP */
  margin-right: 5px;
}

#data-visualization::before {
  content: "📊"; /* Icon for Data Visualization */
  margin-right: 5px;
}

