@font-face {
    font-family: 'IBM Plex Mono';
    src: url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif; /* Applying Noto Sans as default font for body text */
    background-color: ##F5F5F5; /* Setting the background color to black */
    color: #202F25;
    line-height: 1.5rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 2px), radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 2px);
    background-size: 200px 100px; /* Adjust size of stars */
    background-position: 0 0, 50px 50px; /* Adjust position of stars */
}



.noto-sans-all {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }

  

header {
    background-color: ##F5F5F5;
    padding: 20px;
}

.logo img {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.logo {
    padding-left: 5%; /* Adjust the padding as needed */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; /* Aligning text to left */
}

.hero {
    padding: 1rem 0;
    text-align: left; /* Aligning text to left */
    background-size: cover;
    background-position: center;
    background-color:#BDF4E0 ;
    color: #202F25;
}

.hero-content {
    max-width: 600px;
}


.hero h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-family: 'Noto Sans', sans-serif; /* Applying Noto Sans as default font for body text */
    font-weight: 300;
}

.bio, .links {
    text-align: left;
}

.bio h2, .links h2 {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Noto Sans', sans-serif; /* Applying Noto Sans as default font for body text */
}

.embed h2 {

    font-size: 2rem;
    font-weight: 300;
    font-family: 'Noto Sans', sans-serif; /* Applying Noto Sans as default font for body text */

}


footer {
    background-color: #dddddd; /* Slightly different shade of black */
    color: #202F25;
    padding: 20px 0;
}

.footer-logo {
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    width: 45%; /* Adjust width as needed */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #202F25;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}


.social-links {
    display: flex;
    flex-wrap: wrap;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-right: 20px; /* Adjust spacing between links */
    margin-bottom: 10px; /* Adjust spacing between rows */
}

.social-links a {
    text-decoration: underline;
    font-size: 1.4rem;
    color: #202F25;
    display: flex;
    align-items: center; /* Align items vertically */
}

.social-links a img {
    width: 30px; /* Adjust icon size */
    height: auto;
    margin-right: 10px; /* Adjust spacing between icon and text */
}


a {

    text-decoration: underline;
    font-family: "noto sans";
    color: #173135;
    font-weight: 700;
}

a:visited {
    color: #173135;
  }

  hr.new1 {
    color: #e4e4e4;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }