@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root, body{
    color: #f7f2ea;
    background-color: #1f1e20;
    font-family: 'Space Grotesk', sans-serif;
}

.intro-box{
    border-radius: 12px;
    background-color: #2a2a2d;
    padding: 20px 28px;
    margin-bottom: 32px;
    text-align: center;
}

.project-note{
    color: #11b849;
}

.project-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-title, .project-title a{
    text-decoration: none;
    color: inherit;
}

.single-project{
    background-color: #1f1f1f;
    padding: 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
    flex: none;
    text-align: left;
    line-height: 20px;
    border-radius: 12px;
}

.section-divider{
    border: none;
    border-top: 2px solid #3a3a3a;
    margin: 32px 0;
    width: 100%;
}

.project-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.project-content ul{
    margin: 0;
    padding-left: 20px;
}

.project-text{
    flex: 1;
    min-width: 0;
}

/* WIP */
/* .project-media{
    width: 100%;
    max-width: 640px;
}

.project-media video,
.project-media img,
.project-media iframe{
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
} */