.header {
    display: flex;

    align-items: center;
    flex-direction: column;
      
    background-color: #f2f2f2;
    height: 170px;
    padding: 2rem;
    width: 100%;
    z-index: 9999;
}

@media screen and (min-width:768px) {
    
    .header {
        display: flex;
        
        height: 200px;
        padding: 3rem 0;
    }
}

@media screen and (min-width: 1024px) {
    .header {
        flex-direction: row;
        height: 170px;
        justify-content: space-around;
        max-width: 1440px;
      
    }
}