.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
  }
  
  .ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
  }
  
  .ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
  }
  
  .ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
  
  .ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
  }
  
  .ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
  }
  
  .ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
  }
  
  .ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
  }
  
  .ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
  }
  
  .ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
  }
  
  .ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
  }
  
  .ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
  }
  
  .ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
  }
  
  .ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
  }
  
body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    text-align: left;
}

.container {
    max-width: 50%;
    margin: 50px auto;
}

.avatar {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #222; /* Placeholder color */
}

.title {
    font-size: 36px;
    font-weight: 600;
    color: #000
}

.contact {
    font-size: 24px;
    font-weight: 600;
    padding-top:50px;
    color: #000
}

.description {
    font-size: 16px;
    font-weight: normal;
    padding-bottom: 50px;
    color: #000;
    line-height: 1.8rem;
}

a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

.main {
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
}

.main h2 {
    margin-top: 1px;
    font-weight: 600;
}

.main a {
    color: #000;
    font-weight: 400;
    line-height: 2rem;
}

.main a:hover {
    color: blue;
    font-weight: 500;
}

hr {
    margin-top: -50px;
    margin-bottom: 50px;
}

ul {
    line-height: 2rem;
    font-weight: 400;
}

p {
    font-weight: 400;
    line-height: 1.5rem;
}

.contactlink a {
    text-decoration: underline;
}

.contactlink a:hover {
    color: blue;
    font-weight: 500;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .container {
      max-width: 90%;
      margin: 20px auto;
      padding: 10px;
  }

  .title {
      font-size: 32px;
  }

  .description, .contact {
      font-size: 16px;
  }

  .main a {
      font-size: 16px;
      line-height: 1.5rem;
  }

  .main h2 {
      font-size: 22px;
  }
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #111;
        color: #ffffff;
    }

    .avatar {
        background-color: #444; /* Placeholder color for dark mode */
    }

    .title, .contact, .description {
        color: #ffffff;
    }

    .main a {
        color: #ffffff;
    }

    .main h2 {
        color: #ffffff;
    }

    .main {
        color: #ffffff;
    }

    .contact {
        color: #ffffff;
    }


    .main a:hover {
        color: #76c7ff; /* Subtle blue color for dark mode */
        font-weight: 500;
    }

    .contactlink a:hover {
        color: #76c7ff;
        font-weight: 500;
    }

    hr {
        border-color: #fff;
    }
}