/* HEADER */
#header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #dddddd1c;
    padding: 10px;
    padding-left: 20px; padding-right: 20px;
    border: 5px solid #ffffff38;
    border-top: none;
    border-bottom-right-radius: 15px; border-bottom-left-radius: 15px;
    max-height: 10vh;
    min-height: 3.5vh;
    overflow-wrap: hide;
}

#header .page-title {
    /* background: linear-gradient(to right, #6f9dff, #dbe6fd); */
    background: linear-gradient(to right, #99b9ff, #ecf2ff);
    background-clip: text;
    color: transparent;
    /* font-weight: bold; */
}


@media (max-width: 768px) {
    #header #buttons {
        display: none;
    }
    #header {
        height: 3.5vh;
        justify-content: center;
    }
    #header .page-title {
        font-weight: bold;
    }
}
