.header-line {
  border: none;
  border-top: 1px solid black;
  margin: 0px 0;
}

/* Target the body element */
body {
  font-family: Arial, sans-serif;
  margin-left: 15px;
  padding: 0;
  background-color: #F5F5F5;
}

/* Target the introduction section */
.intro-section {
  display: flex;
}

.intro-text {
  padding-right: 80px;
  flex: 1;
}

.profile-image {
  flex: 1;
  padding-left: 50px;
}

.profile-image img {
  max-width: 50%;
  height: auto;
}

/* Target the project section */
.project-section {
  padding-top: 50px;
}

.project-intro {
  padding: 20px;
  text-align: center;
  background-color: darkolivegreen;
  color: white;
  padding: 80px 24px 192px;
}

h1 {
  font-size: 24px;
  font-family: sans-serif;
}

p{
  font-size: 20px;
  font-family: sans-serif;
}

.project-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: -208px 0px 0px;
  padding: 80px 24px 96px;
}

.project-card{
  background-color: aliceblue;
  flex-basis: calc(33.3% - 20px);
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.project-card img{
  max-width: 100%;
  height: auto;
}


    .resume-link {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: #0f172a;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }
  
  /* Target the footer section */
  .footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #666;
  }
  
  html {
  scroll-behavior: smooth;
}
  
