html,
body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#annotated-figure {
    max-width: 100vw;
    max-height: 100vh;
    display: block;
}

#tooltip {
    display: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    z-index: 4;
    font-size: 1.9em;
    max-width: 250px;
}

.header-text {
    font-size: 1.9em;
    padding: 8px 16px;
    position: absolute;
    z-index: 3;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
}

.image-container {
    position: relative;
}

@media (min-width: 320px) {
    #tooltip {
        font-size: 1.9em;
    }
    #mobile-header-text {
        display: block;
    }
    #desktop-header-text {
        display: none;
    }
    .image-container {
        top: 100px;
    }
}

@media (min-width: 1025px) {
    #tooltip {
        font-size: 1.3em;
    }
    #mobile-header-text {
        display: none;
    }
    #desktop-header-text {
        display: block;
        font-size: 1.3em;
    }
    .image-container {
        top: 40px;
    }
}