﻿html {
    display: flex;
    flex-direction: column;
    height: 100%;
}


body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}

#header-wrapper {
    height: 5vh;
    min-height: 50px;
    display: flex;
    padding: 8px;
    background-color: var(--azul-oscuro);
    color: white;
}

#logo-wrapper {
    box-sizing: border-box;
    width: auto;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    width: auto;
    height: 100%;
}

#titulo-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    #titulo-wrapper b {
        font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
        margin-bottom: 3px;
        font-size: 1.8vw;
    }

#titulo {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 3vw;
}

@media (max-width: 375px) {
    #header-wrapper {
        min-height: 40px;
    }
}

@media (min-width: 768px) {
    #header-wrapper {
        min-height: 40px;
    }

    #titulo-wrapper b {
        font-size: 0.9rem;
    }

    #titulo {
        font-size: 1rem;
    }
}