:host {
    display: block;
    width: 100%;
    height: 100%;
    contain: content; /* Performance and containment */
    overflow: hidden; /* Prevent overflow */
}

#container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Or auto for scrollbars */
    display: flex;
    justify-content: center; /* Horizontal centering */
}

#glifo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center; /* Horizontal centering */
}
