body {
    font-family: "Georgia", serif;
    background-color: #f9f9fb;
    color: #222;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    font-weight: normal;
}

h1 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.3em;
    margin-bottom: 0.8em;
}

a {
    color: #1b4f72;
    text-decoration: none;
}

li{
    list-style-type: "- ";
}

a:hover {
    text-decoration: underline;
}

#contact p {
    text-align: center;
    font-size: 1.1em;
}

#name {
    position: sticky;
    top: 0;
    height: clamp(50px, 10vh, 120px);
    font-size: clamp(2rem, 7vh, 4rem);
    background-color: #f9f9fb;
    z-index: 100;
}

.section-title {
    position: sticky;
    top: clamp(50px, 10vh, 120px);
    height: clamp(30px, 5vh, 60px);
    background-color: #f9f9fb;
}


#simplicial-complex {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f9f9fb;
}

@media (max-width: 480px) {
    #name {
        height: 8vh;
        font-size: 5vh;
    }
    .section-title {
        top: 8vh;
        height: 4vh;
    }
    
    
}
