.main {
    min-height: 400px;
    background: linear-gradient(to bottom, #15161a, #0000);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main .title {
    font-size: 4.5rem;
}

.main .subtitle {
    font-size: 1.25rem;
}

.container h1 {
    text-align: center;
}

.project-card {
    min-height: 256px;
    border: 1px solid var(--color-primary);
    padding: 12px;
    margin: 16px;
    font-size: 16px;
}

.project-card .title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 10px;
}

.project-card .title img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.project-card .title h2 {
    font-size: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card .links {
    list-style: none;
    margin-top: 12px;
    font-size: 1.2rem;
}

.project-card .links li:before {
    content: ">";
    padding-right: 8px;
}

.projects .row {
    max-width: 864px;
    margin-left: auto;
    margin-right: auto;
}

.project-card.partygdk {
    background: linear-gradient(135deg, #806cda15, #402b9c15);
    border-color: #9484db;
}

.project-card.partygdk .title h2 {
    background-image: linear-gradient(135deg, #a293e5, #806ae4);
}