main {
    min-height: 100vh;
    box-sizing: border-box;
    scroll-snap-align: start;
    background: var(--main-background);
    font-family: Inter, sans-serif;
    position: relative;
    color: var(--title-color);
    display: inline-flex;
    flex-direction: column;
    padding: 8em;
}

a {
    color: var(--title-color);
    font-weight: bold;
}

#p-about {
    font-size: 22px;
}
#p-projects, #p-work {
    margin-top: 12px;
    font-size: 18px;
}
#p-contact {
    font-size: 16px;
    margin-top: 36px;
}
#p-contact > ul > li:not(:first-child) {
    margin-top: 4px;
}
@media only screen and (max-width: 690px) {
    main {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    #p-projects {
        margin-top: 24px;
    }
    main > section {
        line-height: 1.3
    }
}