.header {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
}

.left-section {
    display: flex;
    align-items: center;
}

.profile-icon-div {
    display:flex;
    flex-direction: column;
    cursor: pointer;
}

.profile-icon-div:hover {
    opacity: 0.7;

}

.profile-icon-div:active {
    opacity: 0.3;
}

.cog-icon-div {
    display:flex;
    flex-direction: column;
    cursor: pointer;
}

.cog-icon-div:hover {
    opacity: 0.7;
}

.cog-icon-div:active {
    opacity: 0.3;
}

.logout-icon-div {
    display:flex;
    flex-direction: column;
    cursor: pointer;
}

.logout-icon-div:hover {
    opacity: 0.7;
}

.logout-icon-div:active {
    opacity: 0.3;
}

.caption {
    font-family: Ubuntu, sans-serif;
    font-size: 11px;
    color: white;
    text-align: center;
    margin: auto;
    margin-top: 2px;
}

.COMMUNITAS-icon {
    margin-left: 40px;
    margin-top: 20px;
    object-fit: contain;
    object-position: top;
    cursor: pointer;
}

.profile-icon {
    height: 35px;
    cursor: pointer;
    margin: auto;
}

.cog-icon {
    height: 35px;
    cursor: pointer;
    margin: auto;
}


.logout-icon {
    height: 40px;
    cursor: pointer;
    margin: auto;
}

.middle-section {
    font-size: 40px;
    margin-top: 30px;
    flex: 1;
    text-align: center;
    align-items: center;
    font-family: Ubuntu, sans-serif;
    color: white;
}

.right-section{
    margin-top: 20px;
    display:flex;
    width: 300px;
    align-items: center;
    justify-content: space-between;
    margin-right: 40px;
}

.version_watermark {
    width: 100%;
    position: fixed;
    bottom: 5px;
    font-family: Ubuntu, sans-serif;
    opacity: 0.9;
    color: white;
    text-align: center;
    margin: auto;
}


