
body, html {
    font-size: 115%;
}

b {
    /*color: #5c5f7c;*/
}

.row {
    display: flex;
    flex-direction: row;

    align-items: baseline;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff44;

    margin: 0.4rem 0;
}

.color_gold, h1 {
    color: #C2AB70;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0.75rem 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(20rem + 1em), 1fr));
}

.projects-item--container {
    width: 100%;
    display: flex;
    flex-direction: column;

    /*margin: 0 0.5em;*/
    padding: 1em 0.5em;
}

.projects-item--container column {
    display: flex;
    flex-direction: column;
}

.projects-item--first {
    /*margin: 0 0.5em 0 0;*/
}

.projects-item--img {
    min-width: 20rem;
    flex-grow: 1;
    height: 14rem;
    max-height: 14rem;

    background: #ffffff;

    display: flex;
    flex-direction: row;

    align-items: center;

    margin-bottom: 0.5em;
}

.projects-item--img a {
    margin: 0 0.5rem;
}

.projects-item--img img {
    width: 100%;
    max-width: 100%;
    height: 14rem;

    object-position: center;
    object-fit: cover;
}

.projects-item--actions {
    display: flex;
    flex-direction: row;
    margin-top: 0.5em;
}

.projects-item--action {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    text-decoration: none !important;

    margin-right: 0.5em;
}

.projects-item--action:hover {
    color: #C2AB70;
}

.projects-item--tech {
    /*display: flex;*/
    /*flex-direction: row;*/
    margin-top: 0.4em;

    font-size: 0.8em;
}

.projects-item--tech a {
    margin-right: 0.2em;
}

.projects-item--tech a::before {
    content: "#"
}

.text_primary {
    font-size: 1em;
}

.text_secondary {
    font-size: 0.875em;
    opacity: 0.75;
}

.force_underline {
    text-decoration: underline !important;
}