html {
    scroll-padding-top: 60px;
}
body {
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, 'Helvetica', 'Arial', sans-serif;
}
.headline {
    margin-bottom: 1rem;
}
#nav-bar {
    background-color: #fff;
}
#nav-items {
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 1.5rem;
    margin-right: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
}
#nav-items a {
    text-decoration: none;
    color: #555;
}
#nav-items a:hover {
    color: #000;
}
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}
#intro {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 80%;
}
#intro-text {
    display: flex;
    flex-direction: column;
}
#intro-text h1 {
    font-size: 4rem;
}
#intro-text h2 {
    font-size: 1.5rem;
}
.project-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}
.project-title h2 {
    font-size: 1.7rem;
}
.project-description {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    overflow-y: auto;
}
.project-subtext {
    font-size: 14px;
    color: #333
}
.project-tools {
    margin-top: auto;
}
.skills-list {
    display: flex;
    justify-content: space-between;
}
.contact-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.contact-items a {
    color: #555;
    text-decoration: none;
}
.contact-items a:hover {
    color: #000;
}
.project-title a {
    color: #555;
    text-decoration: none;
    font-size: 1.2rem;
}
.project-title a:hover {
    color: #000;
}
.project-info {
    align-items: center;
    margin-bottom: 2rem;
}
.project-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}
#contact a {
    color: #555;
    text-decoration: none;
}
#contact a:hover {
    color: #000;
}
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #bbb
}
.footer-items {
    display: flex;
    gap: 1rem;
}
.footer-items a {
    color: #555;
    text-decoration: none;
}
.footer-items a:hover {
    color: #000;
}