
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }

  header {
    background-color: #fff;
    color: #222;
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo {
    max-height: 60px;
  }

  .headshot {
    width: 80px;
    height: 130px;
    
  }

  .headshot-backup {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
  }

  .header-content {
    flex: 1;
    text-align: center;
  }

  .header-content h1 {
    font-size: 2.5rem;
  }

  nav {
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    flex-wrap: wrap;
  }

  nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
  }

  nav a:hover {
    color: black; /* or any color you prefer */
  }

  .container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
  }

  .resume-header{
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    padding: 0.5rem;
    font-family: "Special Gothic Expanded One", sans-serif;
    color: whitesmoke;
  }

  .project {
    border-image: linear-gradient(to right, #B32F79 0%, #FC7535 100%) 1;
    border-radius: 5px; /* this doesn't work */
    border-width: 1px;
    border-style: solid;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .project img.thumbnail {
    width: 200px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
  }

  .project img.logo-placeholder {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
  }

  .project-content {
    flex: 1;
  }

  .project h2 {
    margin-bottom: 0rem;
  }

  .project h3 {
    font-size: .8rem;
    font-weight: normal;
    font-family: 'Helvetica Neue', sans-serif;
    color: #666;
    margin-bottom: 0.5rem;
  }

  .project p {
    margin-bottom: 0.5rem;
  }

  .nav-bar{
    font-family: "Special Gothic Expanded One", sans-serif;
    font-style: normal;
  }

  .element-header{
    font-family: "Special Gothic Condensed One", sans-serif;
    font-size: 2rem;
    font-weight: 100;
    font-style: normal;
    line-height: 1.6rem;
  }

  .page-header{
    font-family: "Knewave", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6rem;
  }

  .element-body{
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-optical-sizing: auto;
    font-style: normal;
  }

  .bullet{
    margin-left: 1rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-optical-sizing: auto;
    font-style: normal;
    margin: .3rem;

  }

  footer {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    font-family: knewave;
    color: #fff;
  }

  @media (max-width: 600px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    .header-content h1 {
      font-size: 1.8rem;
    }
  
    nav {
      flex-direction: column;
    }
  
    nav a {
      margin: 0.5rem 0;
    }
  
    .project {
      flex-direction: column;
      align-items: center;
    }
  
    .project img.thumbnail {
      width: 100%;
      height: auto;
    }
  
    .project img.logo-placeholder {
      margin: 1rem 0 0 0;
    }
  }
  