.header {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial;
    font-weight: bold;
    margin: 0;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header #iconCont {
    padding: 5px;
    margin: 0;
}

.header #iconCont .link {
    cursor: pointer;
    -webkit-user-select: none; /* Safari */;
    -ms-user-select: none; /* IE 10 and IE 11 */;
    -moz-user-select: none;
    user-select: none; /* Standard syntax */;
}

