header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    box-sizing: border-box;

    /* The Faded Presence: Dark Purple to Transparent */
    background: linear-gradient(to bottom, rgba(75, 0, 130, 0.2) 0%, rgba(35, 39, 46, 0) 100%);
    border-bottom: 1px solid rgba(75, 0, 130, 0.3);
    /* Thin purple line to define the edge */
}

/* All Nav Links */
.nav-links a,
.nav-links a:visited {
    display: flex;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Audiowide', sans-serif;
    font-size: .8rem;
    padding: 15px;
    transition: all 0.3s ease;
}


/* Purple Hover with Brackets */
.nav-links a:hover {
    color: #a020f0;
}

.nav-links a:hover::before {
    content: "[ ";
    color: #a020f0;
}

.nav-links a:hover::after {
    content: " ]";
    color: #a020f0;
}


.logo-area {
    display: flex;
}

.nav-logo {
    height: 70px;
    /* Scales your 500px image down */
    width: auto;
    margin-right: 45px;


}

.site-title {
    font-family: 'Audiowide', sans-serif;
    color: #eeeeee;
    font-size: 1.7rem;
    /* Light grey/white for the title */
    letter-spacing: 2px;
}