/* 
    Created on : Jun 25, 2019, 2:59:11 PM
    Author     : a.giannoudakis
*/

.header {
    display: flex;
    width: 100%;
    height: 110px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background: rgb(120,183,228);
    color: white;
    font-size: 15px;
/*    border: solid darkblue;
    border-width: 2px;
    border-color: rgba(0, 122, 217,0.3);*/
}
.headerImage {
    height: 110px;
}

@media screen and (max-width: 860px) {
    .headerImage {
        display: none;
    }
}

.headerText {
    text-align: center;
    font-size: 14px;
    color: white;
    width: 100%;
    font-family: sans-serif;
}
.headerLogo {
    position: absolute;
    width: 100%;
}

@media only screen and (-moz-min-device-pixel-ratio: 2), 
only screen and (-o-min-device-pixel-ratio: 2/1), 
only screen and (-webkit-min-device-pixel-ratio: 2), 
only screen and (min-device-pixel-ratio: 2) {

    .header {
        height: 150px;
        font-size: 15px;
    }
    .headerText {
        flex-grow: 9;
        font-size: 20px;
        color: white;
    }
    .headerImage {
        flex-grow: 1;
    }
}