<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* title.css
*
* Title.
*
* Updated [yyyy-mm-dd]: 2023-08-04
*/

/* Title. */
.title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: var(--color-black);
    margin: var(--margin-containers);
    padding: var(--padding-container);
}

.title h1 {
    font-family: var(--font-family-h);
    font-size: var(--font-size-h1);
    font-weight: bold;
    text-align: center;
    color: var(--color-white);
    width: auto;
    max-width: var(--page-width);
    padding: 0px calc(var(--padding-elements) * 2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

</pre></body></html>