header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

img {
    height: 70px;
}

p {
    font-family: Inter;
    font-size: 18px;
}

.headerLogoDark{
    display: none;
}

.header-description {
    margin-left: 64px;
}

.header-questionProfile {
    display: flex;
    gap: 10px;
}

.header-questionProfile {
    display: flex;
    align-items: center;
}

.questionMark img {
    height: 30px;
}

.profile img {
    height: 50px;
}

/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}

.popup-links {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-family: Inter;
    ;
}

.popup-links:hover {
    color: #29ABE2;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    background-color: #081931;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    width: 120px;
    height: 100px;
    top: 100%;
    left: 50%;
    margin-left: -104px;
    /* Use half of the width (120/2 = 60), to center the tooltip */
    border-radius: 20px;
    border-top-right-radius: 0;
    padding: 10px;
}


/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 1050px) {
    .headerLogoDark {
        display: block;
    }

    header {
        height: 80px;
    }
}
