:root {
    --primary-color: #204659;
    --primary-light: #306a7d;
    --primary-dark: #14323d;

    --secondary-color: #6b9eb6;
    --secondary-light: #92bbd1;
    --secondary-dark: #4b7a8d;

    --background-color: #f4f4f4;
    --text-color: #333;
    --white: #ffffff;
    --error-color: red;
    --border-color: #ccc;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

header {
    height: 70px !important;
    background-color: var(--primary-color);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}

.headerName {
    color: var(--white) !important;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-left img {
    max-width: 30px;
    display: inline;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: var(--white);
}

header a {
    text-decoration: none;
    color: var(--white);
    
}

.header-right .button {
    margin-left: 10px;
    
}

.creditsBTN img {
    height: 40px;
}

.creditsBTN :hover {
    color: gold;
}

header i.fas {
    font-size: 24px;
    /* Adjust size as needed */
    width: auto;
    /* Ensures that width is not constrained */
}


@media only screen and (max-width: 768px) {
    header   .button {
        text-align: center;
        padding: 5px;
}


}


@media only screen and (max-width: 490px) {
    header   .button {
        text-align: center;
        padding: 10px;
}

    header .ModiLearn{
        display: none;
    }
    
}



  