<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

header h1 {
    margin: 0;
}

header .portrait {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 1rem auto;
    border: 1px solid #333447;
}

header p {
    margin: 0.5rem 0;
    text-align: center;
}

.header-icons {
    margin-top: 1rem;
}

.header-icons a {
    margin: 0 0.5rem;
    color: #333447;
    font-size: 1.25rem;
    text-decoration: none;
}

/* Default styles for .icon-text */
.icon-text-no-disappear, .icon-text {
    font-size: 1.0rem;
    font-weight: 200;
    line-height: 1.8;
    margin-left: 0.5rem;
    display: inline;
}

/* Media query to hide .icon-text on small screens */
@media (max-width: 870px) {
    .icon-text {
        display: none; /* Hide text for small screens */
    }
}

/* Styles for the list variation */
.header-icons-list {
    display: flex;
    flex-direction: column;
}

.header-icons-list a {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.header-icons-list i {
    margin-right: 0.5rem;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.minimal-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
    background-color: #fff;
    padding: 0;
    margin-top: 1rem;
    width: 100%; /* Ensure full width */
}

.menu-item {
    margin: 0;
    padding: 0;
}

.menu-item a {
    color: #333447;
    text-align: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 1.2rem;
}

.menu-item a span {
    position: relative; /* Needed for the pseudo-element */
}

.menu-item a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Position the line just below the text */
    width: 0;
    height: 1px;
    background-color: #c6c6c6;
    transition: width 0.2s ease-out;
}

.menu-item a:hover span::after {
    width: 100%;
}


.menu-item {
    display: flex; /* Make sure each menu item is flex too */
    justify-content: center;
    align-items: center;
}

.menu-item a {
    color: #333447;
    text-align: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 1.2rem;
}

.menu-item a span {
    position: relative; /* Needed for the pseudo-element */
}

.menu-item a span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Position the line just below the text */
    width: 0;
    height: 1px;
    background-color: #c6c6c6;
    transition: width 0.2s ease-out;
}

.menu-item a:hover span::after {
    width: 100%;
}
</pre></body></html>