body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.787);
}
header {
    background-color: black;
    color: white;
    padding: 0.25rem 0;
    margin-bottom: 3rem;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
    margin-right: 1rem;
}
.header-logo {
    background: transparent;
}
.header-nav {
    display: flex;
    gap: 0.25rem;
}
.header-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: background-color 0.3s;
}
.header-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.homeblurb {
    width: 80%;
    margin-top: 6.8rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    font-size: large;
    line-height: 1.6;
    color: white;
}
.aboutme {
    width: 80%;
    margin-top: 8rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    color: white;
    line-height: 1.8;
    font-size: large;
    padding-bottom: 4rem;
    padding-top: 0rem;
}
.medium-stories {
    width: 80%;
    margin-top: 2rem;
    margin-bottom: 8rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    color: white;
    font-size: x-large;
}
.medium-stories a {
    color: gray;
    text-decoration: none;
}
.medium-stories a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}
.github-projects {
    width: 80%;
    margin-top: 8rem;
    margin-bottom: 8rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    color: white;
    font-size: x-large;
}
.github-projects a {
    color: gray;
    text-decoration: none;
}
.github-projects a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}
.repo {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
}
.repo h3 {
    margin-top: 0;
}
footer {
    background-color: black;
    color: white;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}