/* Style the header with a grey background and some padding */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

.header {
    overflow: hidden;
    background-color: #707070;
    padding: 20px 10px;
  }
  
  /* Style the header links */
  .header a {
    float: left;
    color: black;
    text-align: center;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 9px;
  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header .logo {
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Change the background color on mouse-over */
  .header a:not(.logo):hover {
    background-color: #500000;
    color: white;
  }
  
  /* Style the active/current link*/
  /* .header a.active {
    background-color: dodgerblue;
    color: white;
  } */
  
  /* Float the link section to the right */
  .header-right {
    float: right;
  }

body {
  font-family: "Figtree", sans-serif;
  background-color: #707070;
}

strong, b {
  color: #500000;
  font-weight: bold;
}

/* Landing Page styling */

  .about-me {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
  }

  .about-me-headshot {
    max-width: 50%;
    margin-right: 20px;
    border-radius: 8px;
  }

  .about-me-text {
    flex: 1;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }

  /* tile styling (left) */
  .tile-left {
    border-radius: 5px;
    padding: 16px;
    margin: 16px;
    text-align: left;
    background-color: #d1d1d1b0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tile-left img {
    max-width: 30%;
    margin-right: 20px;
    border-radius: 5px;
    order: 1;
  }

  .tile-left-content {
    order: 2;
  }

  .tile-left h3 {
    font-size: 1.5em;
    margin: 16px 0;
    order: 2;
    color: #000000;
  }

  .tile-left p {
      font-size: 1em;
      color: #3E3E3E;
      order: 2;
  }

  .tile-left-section {
    padding: 20px;
  }
  
  .tile-left-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000;
    margin-left: 20px;
  }

  .read-more-right {
    margin-top: 8px;
    padding: 8px 16px;
    background-color: #500000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    order: 2;
    float: right;
  }

/* footer styling */
  .footer {
    background-color: #707070;
    color: black;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    width: 100%;
    bottom: 0;
}

  .footer a {
      color: #500000;
      text-decoration: none;
  }

  .footer h2 {
    color: black;
  }

/* Project styling */

.project-header {
  text-align: center;
  padding: 50px;
}

  .project-header h1 {
      font-size: 2.5em;
      color: #000000;
  }

  .project-header p {
      font-size: 1.2em;
      color: #000000;
  }

/* Project tiles styling */
.project {
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    padding: 16px;
    margin: 20px;
    text-align: left;
    background-color: #d1d1d1b0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

  .project img {
      max-width: 30%;
      max-height: 15em;
      margin-left: 20px;
      border-radius: 5px;
      order: 2;
  }

  .project h3 {
      font-size: 1.5em;
      margin: 16px 0;
      order: 1;
      color: #000000;
  }

  .project p {
      font-size: 1em;
      color: #3E3E3E;
      order: 1;
  }

  .read-more {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background-color: #500000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    order: 1;
  }

  .text-link {
    color: #500000;
    text-decoration: underline;
  }

/* Projects Section styling */
.research-section, .other-projects-section {
  padding: 20px;
}

.research-section h2, .other-projects-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #000000;
  margin-left: 20px;
}

/* Resume page styling */
.resume-header h2 {
  margin-bottom: 20px;
  margin-left: 40px;
  font-size: 2em;
}
.skills-content {
  border-radius: 8px;
  padding: 16px;
  margin: 20px;
  text-align: left;
  background-color: #d1d1d1b0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skills * {
  text-align: left;
}

.resume-embed {
  width: 90%;
  display: block;
  margin: 0 auto;
}