header {
    background-color: #030E15;
    height: 75px;
    width: 100vw;
    display: flex;
    justify-content: center;
}

#headerContent {
    width: 1200px;
    background-color: transparent;
    display: grid;
    grid-template-columns: 200px 1fr;
}

#logoArea {
    grid-column: 1;
    justify-content: left;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 55px 1fr;
    margin: 10px 0;
}

#logoArea > h1 {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    justify-self: center;
    color: aliceblue;
    align-self: center;
    grid-column: 2;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-style: oblique;
}

#logoArea > img {
    grid-row-start: 1;
    grid-row-end: 3;
    width: 55px;
    height: 55px;
}

#headerContent > nav {
    margin: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#headerContent > nav > a {
    color: aliceblue;
    font-size: 1rem;
    text-decoration: none;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s;
}

#headerContent > nav > a:hover {
    color: #007acc;
}