body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.container {
    min-height: 100vh;
}


header,
footer {
    background: linear-gradient(90deg, rgb(0, 118, 108), rgb(0, 119, 194));
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
        0px 4px 5px 0px rgba(0, 0, 0, 0.14),
        0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: column;
    height: 64px;
    width: 100%;
    z-index: 999;
}

footer {
    height: 64px;
    bottom: -64px;
    margin-top: 36px;
}

header a {
    text-decoration: none;
    color: white;
}

header nav,
footer div {
    display: flex;
    align-items: center;
    height: 64px;
    width: 100%;
    padding: 0 24px;
    color: white;
    position: relative;
}

header nav h2 {
    color: rgb(255, 255, 255);
    display: block;
    font-size: 24px;
    font-weight: 400;
    height: 32.0156px;
    letter-spacing: normal;
    line-height: 32.016px;
    margin-block-end: 0px;
    margin-block-start: 0px;
    margin-bottom: 0px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    unicode-bidi: isolate;
    white-space-collapse: collapse;
    width: 105.398px;
}

footer div {
    display: block;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navbar-links {
    display: flex;
    align-items: center;
    /* vertical centering */
    justify-content: left;
    /* horizontal centering; adjust as needed */
    flex-grow: 1;
    color: white;
    width: 80%;
}

.navbar-links button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 30px;
    transition: background-color 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
    user-select: none;
}

.navbar-links button.active {
    font-weight: 800;
    border-bottom: 2px solid white;
}


.navbar-links button.active {
    font-weight: 600;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}


.tag {
    background-color: rgb(0, 119, 151);
    color: white;
}

.post-content h1 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.post-content ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.post-content pre {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-size: 0.8rem;
    border: 2px solid #ddd;
    box-shadow: #eee 0px 0px 10px;
    font-family: monospace;
}