/* This targets the container directly to remove the gap */
.md-content {
    margin-top: -100px !important;
}

.md-sidebar {
    top: 0 !important;
}
/* Adjusts the size of the main name and title */
.md-content h1 {
    font-size: 1.2rem !important; /* Default is usually 2.5rem or larger */
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Optional: If you want the 'Network Engineer' part even smaller than the name */
h1 em, h1 span {
    font-size: 0.8em;
    opacity: 0.8;
}

/* Target everything that could be the Title on Mobile */
@media screen and (max-width: 44.9375em) {
    .md-content h1, 
    .md-typeset h1,
    [data-md-component="hero"] h1,
    .md-hero h1 {
        font-size: 1.2rem !important; 
        line-height: 1.1 !important;
        margin-top: 0 !important;
    }
}