header {
    background-color: #171a21;
}

header #header {
    align-items: center;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100%;
    padding: 0px 16px 16px 16px;
    width: 100%;
}

@media screen and (max-width: 1023px) {
    header {
        background-color: #1b2838;
        height: 64px;
        left: 0px;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 400;
    }

    header #header {
        padding: 0px 0px 0px 64px;
    }

    header #header img {
        height: 64px;
        object-fit: cover;
    }

    main {
        padding-top: 64px;
    }
}
