body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: white;
    padding-bottom: 5em;
    line-height: 1.5;
    font-size: large;
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow-x: hidden;
}

nav {
    position: -webkit-sticky; /* For Safari compatibility */
    position: sticky;
    top: 0; /* Stick to the top of the viewport when scrolling */
    z-index: 100;
    display: flex;
    flex-direction: column;

}

img {
    max-width: 100%;
    height: auto;
}

blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ccc;
    background-color: #f9f9f9;
    font-style: italic;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    color: #274fc0;
}

a:visited {
    color: #274fc0;
}

a:hover {
    color: #53368c;
}

.navbar-items {
    background-color: white;
    padding: 12px;
    /* margin-bottom: 12px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-buffer {
    background-image: linear-gradient(to top, transparent, white);
    background-color: transparent;
    height: 2.0em;
    
}

code {
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.9em;
    /* font-family: "Courier New", Courier, monospace; */
}

.container {
    display: flex;
    justify-content: center;
}

.content {
    padding: 0 12px;
    flex-grow: 1;
}

.content h1 {
    font-size: 2em;
    text-align: left;

}

.hero-text h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.content h2 {
    margin-top: 1.5em;
    margin-bottom: 0em;
    font-size: 1.5em;
}

.profile-photo {
    border-radius: 50%;
    max-width: 50%;
    margin: auto;
}

.profile-photo-container {
    display: flex;
    align-items: center;
}

.navbar-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* Space between icons */
}

.navbar-icons a {
    font-size: 1.25em;
    /* Adjust icon size */
    color: #5b5757;
    /* Default icon color */
    text-decoration: none;
    /* Remove underline from links */
}

.navbar-links a {
    text-decoration: none;
    color: #5b5757;
}


.model-list li {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.model-item-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.model-item-link {
    margin-bottom: 0.5rem;
}

.model-item-link a {
    font-family: monospace;
    font-size: 0.9rem;
}

.model-item-link a:hover {
    text-decoration: underline;
}

.model-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.model-item-source-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.25rem 0.5rem;
    background-color: #f0f0f0;
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: background-color 0.2s ease;
}

.model-item-source-link:hover {
    background-color: #e0e0e0;
    color: #333;
}

.article-list ul li {
    padding-bottom: 0.5rem;
}
