#headerContent {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 100px;
}

header {
    display: flex;
    backdrop-filter: blur(10px);
    align-items: center;
    position: fixed;
    height: 2rem;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: all 300ms;
    color-scheme: dark;
    font-family: "Prompt", system-ui;
    user-select: none;
    background: rgba(7, 8, 10, 0);
    border-bottom: rgba(0, 0, 0, 0) solid 1px;
    padding: 20px 40px;
}

header.shrunk {
    height: 1.5rem;
    background: rgba(15, 17, 19, 0.8);
    border-bottom: rgb(26, 26, 26) solid 1px;
}

#headerLinks {
    margin-left: auto;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    gap: 25px;
    color: rgba(255, 255, 255, 0.51);
    transition: all 0.15s;
}

.headerLink {
    color: rgba(255, 255, 255, 0.67);
    transition: color 0.25s;
}

.headerLink:hover {
    color: white;
}

@media only screen and (max-width: 800px) {
    #headerLinks {
        margin-left: auto;
        margin-right: auto;
        vertical-align: middle;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}