.header {
    height: 55px;
    background-color: rgb(85, 85, 85);
    color: rgb(245,207,69);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header a, .header a:visited {
    font-family: Monocraft, Roboto;
    color: rgb(245,207,69);
    text-decoration: none;
}

.left {
    margin-left: 40px;
    /* border: 1px solid white; */
}

.right {
    /* border: 1px solid white; */
    margin-right: 40px;
    width: 550px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* adjust font size at different window widths */
@media (max-width: 815px) {
    .header a, .header a:visited {
        font-size: 10pt;
    }
    .right {
        width: 450px;
    }
}

@media (max-width: 600px) {
    .header a, .header a:visited {
        font-size: 8pt;
    }
    .right {
        width: 450px;
    }
}