header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 65px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #FFF;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#headerLogo {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    padding-right: 10px;
    background-color: rgba(0, 0, 0, 0.2);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerLogoImg {
    margin-left: 10px;
    margin-right: 10px;
    
    display: flex;
    justify-content: center;
}

#headerLogoImg img {
    height: 45px;
}

#headerTitle {
    position: relative;
    font-size: 2rem;
  }