/* Layout Container */
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* Fonts and Body Styling */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* Heading Fonts */
h1, h2 {
  font-family: "Prosto One", sans-serif;
}

h1 {
  text-align: center;
}

h2 {
  margin-top: 30px;
}

/* Image Styling */
img[src] {
  border: 2px solid black;
  display: block;
  margin: 0 auto;
}

/* Skills & Education Sections */
.skills,
.education-list {
  background-color: #f2f7ff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
}
.projects{
    text-align: center;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}
.project-section{   
   background-color: #ffffff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.project-section h3{
    text-align: center;
    font-family: "Prosto One", sans-serif;
    margin-bottom: 10px;
}
.project-section a{
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}
.project-link{
    text-align: center;
    margin-top: 15px;
}
.project-link a{
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3 ease;
}
.project-link a:hover {
  background-color: #0056b3;
}