﻿.h-container {
    display: grid;
    width: 100%;
    background-color: #049cd7; /*#1481C5*/
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "header-left header-right";
}

.h-left {
    grid-area: header-left;
    display: inline-block;
    align-self: center;
    padding-left: 50px;
    /*background-color: green;*/
}

.h-right {
    grid-area: header-right;
    display: inline-block;
    align-self: center;
    /*justify-self:end;*/
    text-align: right;
    padding-right: 50px;
}

.h-left-title {
    font-size: 36px;
    line-height: 38px;
    font-weight: bold;
    color: white;
    margin: 10px 0;
    /*background-color:red;*/
}

.h-right-logo {
    width: 30%;
    margin: 10px 0;
}

