﻿header {
    display: flex;
    padding: 18px 150px;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.logoContainer {
    display: flex;
    gap: 19px;
    align-items: center;
}

.headerLogo {
    height: 39px;
    width: 39px;
    cursor:pointer;
}


@media screen and (max-width:768px) {
    header {
        padding: 12px 24px;
        justify-content: space-between;
    }
    header h1 {
        padding: 6px 0 0;
    } 
}