#header {
    padding: 20px 40px;
    background-color: #FCFAF2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#headerLogo {
    max-width: 150px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    #header {
        padding: 15px;
    }

    #headerLogo {
        max-width: 80px;
    }
}
