* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* background-color: #f5f5f5; */
  }
  body {
      background-color: #f5f5f5;
      color: #121212;
  }
  body.dark-theme  {
    color: #f5f5f5;
    background: #121212;
  }
  body.dark-theme a {
      color: #f5f5f5;
  }
  .btn-toggle {
    background-color: transparent; 
    border: none;
    border-radius: 50%;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
  }
  /* Header */
  .logo {
    font-size: 50px;
    text-decoration: none;
  }
  li,
  a {
    font-family: Avneir, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121212;
    text-decoration: underline;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
  }
  .nav_links {
    list-style: none;
    text-decoration: none;
  }
  .nav_links li {
    display: inline-block;
    padding: 0px 20px;
  }
  /* About Me Column */
  .wrapper {
    margin-left: 70px;
    display: flex;
    flex-direction: row;
  }

  .left {
    flex: 50%;
    padding: 50px;
    margin-left: 40px;
  }
  .right {
    flex: 50%;
    padding: 50px;
   


  }
  /* About Me Page */
  .about-me-image {
    object-fit: cover;
    width: 300px;
    height: 300px;
    border-radius: 150px;
  }
  h2 {
    font-size: 40px;
    font-family: Avenir;
    font-display: bold;
  }
  .aboutme-text {
    font-size: 30px;
    font-family: Avenir;
    width: 400px;
  }
  /* Footer */
  html,
    body {
      height: 100%;
      margin: 0;
    }
    body {
        display: flex;
        flex-direction: column;
      }
      .content {
        flex: 1 0 auto;
      }
      .footer {
        flex-shrink: 0;
        font-size: 18px;
    word-spacing: 2px;
    font-family: Avenir;
    text-align: center;
      }
/* Home CSS */
.home-text {
    font-size: 30px;
    font-family: Avenir;
    /* width: 400px; */
}
.home-right {
    /* display: block; */
    margin: 0 auto;
    margin-top: 50px;
    /* width: 400px; */
    text-align: center;

}
@media only screen and (max-width: 786px) {
     .logo {
        font-size: 32px;
        white-space: nowrap;
    }
    .home-right {
        font-size: 25px;
        width: 342px;
    }
    h2 {
        font-size: 30px;
    }
    .home-text {
        font-size: 25px;
         width: 342px;
    }
    .footer {
        font-size: 14px;
    
    }
    .content {
        flex: 1 0 auto;
      }
    .wrapper {
        display: block;
    }
    .left {
        margin-left: 0;
        padding: 0%;
    }
    .about-me-image {
        object-fit: cover;
        width: 300px;
        height: 300px;
        border-radius: 150px;
        text-align: center;
      }
      .aboutme-text {
        font-size: 25px;
        width: 200px;
      }
  

  }
  