* {
    box-sizing: border-box;
}

body {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background: #0f0f0f;
    font-family: "Inter", sans-serif;
}

nav {
    margin-top: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
}

nav img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.sticky-nav {
    top: 13px;
    position: fixed;
    z-index: 99;
}

.sticky-nav, nav .contact {
    padding: 12px 24px;
    border-radius: 24px;
    border: 1px solid #212121;
    background: #1a1a1a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-nav a, nav .contact {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color .4s;
}

.sticky-nav a:hover {
    color: #ff8906;
}

nav .contact {
    background: #ff8906;
    color: #000;
}

nav .contact:hover {
    color: #fff;
}

section {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
}

section.main {
    align-items: center;
    justify-content: center;
}

h1 {
    color: #fff;
    font-size: 4.5em;
    font-weight: 500;
}

.main p {
    max-width: 800px;
    margin-top: 30px;
    color: #999999;
    font-size: 16px;
    text-align: center;
}

section .socials {
    margin-top: 25px;
    display: flex;
    gap: 25px;
}

section .socials svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: fill .4s;
}

section .socials a:hover svg {
    fill: #ff8906;
}

section .projects-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section .projects-nav h2 {
    font-size: 2em;
    font-weight: 400;
    color: #fff;
}

section .projects-nav a {
    color: #ff8906;
    text-decoration: none;
    font-size: 1.1em;
}

.project-list {
    margin-top: 30px;
    display: grid;
    flex: none;
    gap: 32px;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(2, minmax(1px, 1fr));
    grid-template-rows: repeat(1, min-content);
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

.project-list a, .project-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-list a img {
    width: 100%;
    border-radius: 15px;
}

.project-content h4 {
    color: #fff;
    font-size: 16px;
}

.project-content p {
    text-align: left;
    color: #999;
    font-size: 14px;
}

.project-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}