just a small fix to the css to keep it centered no matter the size of the texts:

#container {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
    top: 2.4%;
    gap: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

#zone {
    text-align: end;
}

#street {
    text-align: start;
}
1 Like