body {
    font-family: var(--ff);
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    font-family: Courier, monospace;
    color: #ababab;
    /* display: flex;
    flex-flow: column nowrap;
    align-items: center; */
    font-size: 15px;
    line-height: 18px;
    /*! text-align: center; */
    margin-bottom: 0;
    padding: 20px;
    margin-bottom: 20px;
}
header #header-image {
    width: 100%;
    max-width: 45px;
}

#drawer-nav {
    /*! margin-top: 20px; */
    text-align: left;
    /*! padding: 10px; */
    margin: ;
    /*! padding: 20px; */
}




.projects {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(193px, 100%), 1fr));
    grid-gap: 0;
    grid-template-rows: auto 1fr;
    /*! background: #dfdfdf; */
    /*! border-top: 1px solid #000; */
    grid-column-gap: 20px;
    grid-row-gap: 53px;
    padding: 20px;
}

.projects a:hover {
    /*! background-color: #0000007b; */
}
.projects a img {
    /*! max-width: 244px; */
    /*! opacity: 0.2; */
    /* border: 1px solid #646464; */
    max-height: 741px;
    object-fit: contain;
}
/* .projects a img:hover {
    border-color: yellow;
} */
.projects a {
    display: flex;
    flex-flow: column nowrap;
    color: var(--text-color) !important;
    text-decoration: none;
    font-size: 11px;
    line-height: var(--p-leading);
    height: max-content;
    /*! display: none; */
}
.projects a .name {
    margin-top: 7px;
}



#about {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: center;
    /* padding: 10px 50px; */
    /*! margin-top: 50px; */
    /*! min-height: 100px; */
    line-height: 16px;
    grid-column: 1/-1;
    color: black;
    font-size: 16ox !important;
    padding: 0 11px;
    margin-bottom: 20px;
    line-height: 21px;
}
h1 {
    font-size: 16px;
    font-weight: normal;
    /*! color: purple; */
    margin: 0;
}
.small {
    /*! font-size: 12px; */
    /*! line-height: 16px; */
}
#intro-footer {
    width: 100%;
    grid-column: 1/-1;
    text-align: center;
    padding: 20px;
}

#drawer {
    grid-column: 1/-1;
}

/* Breakpoints */
@media (max-width: 642px) {
    nav, .projects {
        padding: 15px;
    }
    .projects.grid {
        grid-row-gap: 10px;
    }
    .projects a {
        margin-bottom: 20px;
    }
}

@media (max-width: 532px) {
    /* main.grid .page-wrap.grid {
        height: calc(100vh - 315px - 26px - 26px);
    } */
}