/*
** src/css/projects.css
*/

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #fff;
}

main {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: vertical;
    padding: 64px;
    font-family: "Source Code Pro";
    gap: 20px;
}

p {
    margin: 0;
}

a {
    color: black;
}

.vflex {
    display: flex;
    flex-direction: column;
}

.hflex {
    display: flex;
    flex-direction: row;
}

#title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 8px;
}

#title-link {
    text-decoration: none;
}

.title-smaller {
    font-size: 32px;
}

.project-wrapper-outer {
    align-items: center;
}

.project-wrapper-inner {
    gap: 4px;
}

.project-logo {
    margin-right: 20px;
    font-size: 32px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
}

.project-description {
    font-size: 14px;
}

.project-attributes {
    font-size: 12px;
    font-weight: 300;
}

.subtitle {
    font-size: 20px;
    margin-top: 16px;
}
