.div-header {
    height: 200px;
    display: flex;
    /*
    flex-direction: row; /* default anyway 
    justify-content: space-between;  /* this is only needed if the above is active */
    /* so header sticks at top */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(28, 28, 91);
    border-bottom-width: 1px ;
    border-bottom-color: rgb(168, 157, 157) ;
    border-bottom-style: solid ;
    z-index: 100; /* so it is always in front of everything else with pos-relative*/

}

.div-header-left {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.logo {
    margin: 5px;
}

.header-text {
    color: rgb(213, 213, 165);
    font-size: 17px ;
    margin-top: 0px;
    margin-left: 10px;
    padding-right: 10px;
    margin-bottom: 1px;
}

.div-header-right {
    width: 25%;
    margin-right: 10px;
    display:flex;
    /* flex-shrink: 0; /* force no shrink a flex box -- seems not needed here*/
    flex-shrink: 0;
    align-items:center;
    justify-content: center;
    text-align: right;
}
.div-address {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.profile-icon {
    text-decoration: wavy;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
 
