@font-face {
    font-family: "IBM Plex Sans";
    src: url(IBMPlexSans-VariableFont.ttf);
}

@font-face {
    font-family: "IBM Plex Sans Condensed";
    src: url(IBMPlexSans-VariableFont.ttf);
}

:root{
    /* COLOR VARIABLES */
    --background-white: #F2F3F1;
    --text-dark: #151913;
    --input-box-grey: #C6CAC4;

    /* TEXT VARIABLES */
    --body-font: "IBM Plex Sans", sans-serif;
    --accent-font: "IBM Plex Sans Condensed", sans-serif;
    --h1-size: 57px;
    --h2-size: 46px;
    --h3-size: 37px;
    --h3-size-responsive: 34px;
    --h4-size: 29px;
    --h5-size: 24px;
    --h6-size: 19px;
    --h6-size-responsive: 15px;
    --p-size: 15px;
    --p-size-responsive: 12px;
    --symbol: 12px;
    --height-default: 130%;
    --height-text-block: 150%;
}

body {
    background-color: var(--background-white);
    font-family: var(--body-font);
    color: var(--text-dark);
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

body main {
    margin: 0 16px 16px 16px;
}

/* TITLE STYLES */

main .title-container {
    display: inline-block;
    margin: 0;
}

main .title-container .roles-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 20px;
    margin: 0 0 8px 0;
}

#full-name {
    font-weight: 300;
    font-size: var(--h6-size);
    line-height: var(--height-default);
    margin: 16px 0 8px 0;
}

.title-container .roles-container .role {
    font-weight: 300;
    font-size: var(--p-size);
    margin: 0 8px 0 0;
    line-height: var(--height-default);
}

.title-container .roles-container .symbol {
    font-weight: 300;
    font-size: var(--symbol);
    margin: 0 8px 0 0;
    line-height: 140%;
}

.quote {
    font-weight: 300;
    font-size: var(--p-size);
    font-style: italic;
    margin: 0;
    line-height: var(--height-default);
}

/* NAVBAR MENU STYLES */

.navbar-fixed {
    height: 32px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    right: 16px;
    mix-blend-mode: difference;
}

.navbar-fixed .menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 65%;
}

.menu {
    padding: 0;
    margin: 0;
}

.menu a {
    text-decoration: line-through solid white;
    font-weight: 300;
    font-size: var(--h6-size);
    line-height: var(--height-default);
    background: white;
    background-clip: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#return {
    text-decoration: none;
}

#prompt {
    font-style: italic;
    text-decoration: none;
}

/* NAVBAR SOCIALS STYLES */

.navbar-absolute {
    height: 32px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 32px;
    right: 16px;
}

.navbar-absolute .socials {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 65%;
}

.socials {
    padding: 0;
    margin: 0;
}

.navbar-absolute .socials a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    font-size: var(--h6-size);
    line-height: var(--height-default);
}

/* PROJECT INFORMATION STYLES */

.project-title {
    font-size: var(--h1-size);
    font-weight: 700;
    line-height: var(--height-default);
    margin: 128px 0 0 16px;
}

.project-description {
    font-weight: 300;
    line-height: var(--height-text-block);
    font-size: var(--p-size);
    margin: 16px 16px 0 16px; 
}

.graphic-button-container {
    display: flex;
    align-items: center;
    margin: 24px 0 64px 16px;
    padding: 0;
}

.graphic-button-container > a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.main-button {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    margin: 0 24px 0 0;
    font-family: var(--accent-font);
    font-weight: 400;
    padding: 8px 0;
    font-size: var(--p-size);
    line-height: var(--height-default);
    color: var(--text-dark);
    transition: all 0.15s ease;
}

.main-button > .arrow {
    margin: 0 0 0 4px;
    font-size: var(--h6-size);
    line-height: var(--height-default);
    font-family: var(--accent-font);
    font-weight: 300;
    transition: transform 0.25s ease;
}

.main-button:hover {
    cursor: pointer;
}

.main-button:hover > .arrow {
    cursor: pointer;
    transform: translateX(4px);
}

/* PROJECT IMAGE GRID */

.logos-grid {
    width: 100%;
    display: grid;
    margin: 32px 0 32px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 4px;
    row-gap: 4px;
    background-color: white;
}

.logos-grid .logos-grid-image {
    margin: 0;
    width: 100%;
    object-fit: fill;
}

.project-gallery-grid {
    padding: 0;
    width: 100%;
    display: grid;
    justify-content: center;
    background-color: white;
}

.project-gallery-grid img {
    max-width: 1440px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.project-gallery-grid > p {
    margin: 0 0 24px 0;
    font-weight: 300;
    line-height: var(--height-text-block);
    font-size: var(--p-size);
}

#top-image {
    margin: 64px 0 0 0;
}

/* FOOTER */

body .footer {
    margin: 256px 16px 0 16px;
    padding: 0;
}

.footer .enter-your-prompt {
    line-height: var(--height-default);
    font-weight: 700;
    font-style: italic;
    font-size: var(--h3-size);
    margin: 0 0 64px 0;
}

.footer .footer-content {
    margin: 0 0 192px 0;
    display: flex;
    justify-content:space-between;
    width: 100%;
}    

/* Contact form */

.footer .contact-form-container {
    margin: 0;
    width: 30%;
}

.footer .contact-form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.footer .contact-form-container form label {
    margin: 0;
    font-family: var(--accent-font);
    font-size: 13px;
    line-height: var(--height-default);
    font-weight: 400;
}

input[type=text] {
    width: 100%;
    padding: 0 12px;
    margin: 4px 0 24px 0;
    box-sizing: border-box;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--input-box-grey);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: var(--p-size);
}

input[type=text]:focus {
    font-family: var(--body-font);
    font-size: var(--p-size);
    border: 2px solid var(--text-dark);
    font-weight: 400;
}

input[type=email] {
    width: 100%;
    padding: 0 12px;
    margin: 4px 0 24px 0;
    box-sizing: border-box;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--input-box-grey);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: var(--p-size);
}

input[type=email]:focus {
    font-family: var(--body-font);
    font-size: var(--p-size);
    border: 2px solid var(--text-dark);
    font-weight: 400;
}

input:focus {
    outline: var(--text-dark);
}

::placeholder {
    color: rgba(21, 25, 19, 0.5);
    opacity: 1;
    font-weight: 400;
    font-family: var(--body-font);
    font-size: var(--p-size);
    line-height: 120%;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 12px;
    margin: 4px 0 0 0;
    box-sizing: border-box;
    border: 1px solid var(--input-box-grey);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    resize: none;
    font-family: var(--body-font);
    font-size: var(--p-size);
    line-height: var(--height-text-block);
    font-weight: 400;
}

textarea:focus {
    font-family: var(--body-font);
    font-size: var(--p-size);
    border: 2px solid var(--text-dark);
    font-weight: 400;
    line-height: var(--height-text-block);
    outline: var(--text-dark);
}

.submit-container {
    display: flex;
    margin: 24px 0 0 0;
    align-items: center;
    margin: 24px 0 0 0;
    padding: 0;
    -webkit-appearance: none;
}

input[type=submit] {
    border: none;
    margin: 0;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: var(--h5-size);
    line-height: var(--height-default);
    font-style: italic;
    color: var(--text-dark) !important;
    background-color: var(--background-white) !important;
    transition: all 0.15s ease;
    -webkit-appearance: none;
}

.submit-container .submit {
    font-size: var(--h6-size);
    color: var(--text-dark) !important;
    margin: 0 0 0 8px; 
    font-weight: 300;
    line-height: var(--height-default);
    transition: transform 0.25s ease;
    -webkit-appearance: none;
}

input[type=submit]:hover {
    cursor: pointer;
}

.submit-container:hover > .submit {
    cursor: pointer;
    transform: translateX(4px);
}

/* Project request forms container */

.footer .request-forms-container {
    margin: 0;
}

.footer .request-forms-container > p {
    margin: 16px 0 40px 0;
    line-height: var(--height-text-block);
    font-weight: 300;
    max-width: 480px;
    font-size: var(--p-size);
}

.footer .request-forms-container .request-form-item {
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer .request-forms-container .request-form-item > .request-form-link:hover {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.footer .request-forms-container .request-form-item .request-form-button {
    margin: 0 0 8px 0;
    padding: 0;
    line-height: var(--height-default);
    font-weight: 300;
    font-size: var(--h6-size);
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--body-font);
    color: var(--text-dark);
    transition: all 0.15s ease;
}

.request-form-button > .arrow {
    margin: 0 0 0 8px;
    padding: 0;
    line-height: var(--height-default);
    font-weight: 300;
    font-size: var(--h6-size);
    transition: transform 0.25s ease;
}

.request-form-button:hover {
    cursor: pointer;
}

.request-form-button:hover > .arrow {
    cursor: pointer;
    transform: translateX(4px);
}

.footer .request-forms-container .request-form-item > a {
    margin: 0;
    line-height: var(--height-default);
    font-weight: 300;
    text-decoration: none;
    color: var(--text-dark);
    font-size: var(--p-size);
    font-style: italic;
}

.footer .request-forms-container .request-form-item > a:hover {
    text-decoration: underline;
} 

/* Project proposals and extras container */

.footer .proposals-and-extras-container {
    margin: 0;
    max-width: 480px;
}

.footer .proposals-and-extras-container > p {
    margin: 16px 0 40px 0;
    font-size: var(--p-size);
    font-weight: 300;
    line-height: var(--height-text-block);
    min-width: 480px;
}

.footer .proposals-and-extras-container .proposals-and-extras-item-list {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer .proposals-and-extras-container .proposals-and-extras-item-list > a {
    margin: 0 0 24px 0;
    line-height: var(--height-default);
    font-weight: 300;
    color: var(--text-dark);
    text-decoration: none;
    font-size: var(--h6-size);
    font-style: italic;
}

.footer .proposals-and-extras-container .proposals-and-extras-item-list > a:hover {
    text-decoration: underline;
}

.footer .footer-socials {
    margin: 0 0 16px 0;
}

.footer .footer-socials > .socials {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 16px 0;
    padding: 0;
    height: 32px;
}

.footer .footer-socials .socials a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    font-size: var(--h6-size);
    line-height: var(--height-default);
}

.footer .footer-email {
    margin: 0 0 16px 0;
    line-height: var(--height-default);
    font-size: var(--p-size);
    font-weight: 300;
}

.footer .footer-signature {
    margin: 0 0 16px 0;
    display: flex;
    justify-content: space-between;
}

.footer .footer-signature .footer-author {
    margin: 0;
    line-height: var(--height-default);
    font-size: var(--p-size);
    font-weight: 300;
}

.footer .footer-signature .footer-mark {
    margin: 0;
    line-height: var(--height-default);
    font-size: var(--p-size);
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width:2048px) {

    /* PROJECT IMAGE GRID */

    .logos-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media only screen and (max-width:1660px) {

    /* FOOTER */

    .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        max-width: 1328px;
    }

    .footer .contact-form-container {
        width: 50%;
    }

    .footer .proposals-and-extras-container {
        margin: 16px 0 0 0px;
    }
    
}

@media only screen and (max-width:1530px) {

    /* FOOTER */

    .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        max-width: 1248px;
    }

}

@media only screen and (max-width:1440px) {

    /* PROJECT INFORMATION STYLES */

    .graphic-button-container {
        margin: 24px 0 48px 16px;
    }

}

@media only screen and (max-width:1360px) {

    /* FOOTER */

    .footer .contact-form-container {
        width: 45%;
    }

    .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        max-width: 1088px;
    }
    
}

@media only screen and (max-width:1222px) {

    /* NAVBAR MENU STYLES */

    .navbar-fixed {
        height: 72px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        position: fixed;
        top: 8px;
        right: 16px;
        mix-blend-mode: difference;
    }

    .navbar-fixed .menu {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        margin: 0;
        width: 50%;
    }

    .menu a {
        margin: 0 0 0 16px;
    }

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        height: 72px;
        top: 80px;
    }

    .navbar-absolute .socials {
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 50%;
    }

    .navbar-absolute .socials a {
        margin: 0 0 0 24px;
    }

}

@media only screen and (max-width:1180px) {

    /* PROJECT IMAGE GRID */

    .logos-grid {
        grid-template-columns: 1fr 1fr;
    }

    #top-image {
        margin: 32px 0 0 0;
    }

    /* FOOTER */

    body .footer {
        margin: 128px 16px 0 16px;
    }

    .footer .footer-content {
        margin: 0 0 128px 0;
    }

    .footer .enter-your-prompt {
        font-size: var(--h4-size);
        margin: 0 0 40px 0;
    }

    .footer .request-forms-container {
        margin: 0 16px 0 16px;
    }

}

@media only screen and (max-width:1024px) {

    /* FOOTER */

    .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .footer .contact-form-container {
        width: 100%;
    }

    .submit-container {
        margin: 40px 0 0 0;
    }

    .footer .request-forms-container {
        margin: 72px 0 0 0;
        min-width: 504px;
    }

    .footer .proposals-and-extras-container {
        margin: 40px 0 0 0;
        min-width: 504px;
    }

}

@media only screen and (max-width:871px) {

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        height: 112px;
    }

    /* FOOTER */

    .footer .footer-socials > .socials {
        flex-wrap: wrap;
        justify-content: space-between;
        justify-items: flex-start;
        height: 80px;
    }

    .footer .footer-socials .socials a {
        margin: 0 16px 0 16px;
    }

    .footer .footer-email {
        margin: 0 0 16px 0;
    }

    .footer .footer-signature {
        margin: 0 0 16px 0;
    }

}

@media only screen and (max-width:768px) {

    /* TITLE STYLES */

    main .title-container {
        display: none;
    }

    /* NAVBAR MENU STYLES */

    .navbar-fixed {
        height: 88px;
        width: 100%;
        justify-content: flex-end;
        top: 8px;
        right: 0;
    }

    .navbar-fixed .menu {
        justify-content: flex-end;
        margin: 0 16px 0 16px;
        width: 100%;
    }

    .menu a {
        margin: 0 0 0 32px;
    }

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        height: 88px;
        top: 96px;
    }

    .navbar-absolute .socials {
        width: 100%;
        margin: 0 0 0 16px;
    }

    .navbar-absolute .socials a {
        margin: 0 0 0 32px;
    }

    /* PROJECT INFORMATION STYLES */

    .project-title {
        margin: 272px 0 0 0;
    }

    .project-description {
        margin: 16px 0 0 0;
    }

    .graphic-button-container {
        margin: 24px 0 48px 0;
    }

    /* PROJECT IMAGE GRID */

    .project-gallery-grid img {
        max-width: 100%;
    }

    /* FOOTER */

    body .footer {
        margin: 128px 16px 0 16px;
    }

}

@media only screen and (max-width:660px) {

    /* PROJECT IMAGE GRID */

    .logos-grid {
        grid-template-columns: 1fr;
    }

}

@media only screen and (max-width:536px) {

    /* PROJECT INFORMATION STYLES */
    
    .project-title {
        font-size: var(--h3-size);
    }

    /* FOOTER */

    body .footer {
        margin: 96px 16px 0 16px;
    }

    .footer .footer-content {
        margin: 0 0 96px 0;
    }

    .footer .request-forms-container {
        min-width: auto;
        margin: 72px 0 0 0;
    }

    .footer .request-forms-container > p {
        max-width: none;
        margin: 0 0 24px 0;
    }

    .footer .request-forms-container .request-form-item {
        margin: 0 0 24px 0;
    }

    .footer .request-forms-container .request-form-item .request-form-button {
        text-align: left;
        text-decoration: underline;
        margin: 0 0 24px 0;
        line-height: var(--height-text-block);
    }

    .request-form-button > .arrow {
        display: none;
    }

    .footer .proposals-and-extras-container {
        margin: 48px 0 0 0;
        min-width: auto;
    }

    .footer .proposals-and-extras-container > p {
        max-width: none;
        min-width: auto;
        margin: 0 0 24px 0;
    }

    .footer .proposals-and-extras-container .proposals-and-extras-item-list > a {
        text-align: left;
        text-decoration: underline;
        margin: 0 0 24px 0;
        line-height: var(--height-text-block);
    }

    .footer .footer-email {
        font-size: var(--p-size-responsive);
        margin: 0 0 8px 0;
    }

    .footer .footer-signature .footer-author {
        font-size: var(--p-size-responsive);
    }

    .footer .footer-signature .footer-mark {
        font-size: var(--p-size-responsive);
    }

}

@media only screen and (max-width:508px) {

    /* FOOTER */

    .footer .footer-socials > .socials {
        height: 104px;
        margin: 0;
    }

}

@media only screen and (max-width:491px) {

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        height: 128px;
    }

    /* PROJECT INFORMATION STYLES */
    
    .project-title {
        margin: 288px 0 0 0;
    }

}

@media only screen and (max-width:469px) {

    /* NAVBAR MENU STYLES */

    .navbar-fixed {
        height: 128px;
    }

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        top: 136px;
    }

    /* PROJECT INFORMATION STYLES */
    
    .project-title {
        margin: 320px 0 0 0;
    }

}

@media only screen and (max-width:446px) {

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute .socials {
        width: 100%;
        margin: 0 0 0 16px;
    }

}

@media only screen and (max-width:407px) {

    /* NAVBAR MENU STYLES */

    .navbar-fixed {
        height: 160px;
    }

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        top: 168px;
    }

    /* PROJECT INFORMATION STYLES */

    .project-title {
        margin: 384px 0 0 0;
    }

}

@media only screen and (max-width:392px) {

    /* FOOTER */
   
    .footer .footer-socials > .socials {
        height: 112px;
        margin: 0;
    }

    .footer .footer-socials .socials a {
        margin: 0 8px 0 8px;
    }

}

@media only screen and (max-width:376px) {

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        height: 160px;
    }

    /* PROJECT INFORMATION STYLES */

    .project-title {
        margin: 400px 0 0 0;
    }

    .graphic-button-container {
        flex-direction: column;
        align-items: flex-start;
        margin: 16px 0 32px 0;
    }
    
    /* FOOTER */

    body .footer {
        margin: 96px 16px 0 16px;
    }
    
}

@media only screen and (max-width:328px) {

    /* FOOTER */

    .footer .footer-socials > .socials {
        height: 128px;
        margin: 0;
    }

}

@media only screen and (max-width:323px) {

    /* NAVBAR MENU STYLES */

    .navbar-fixed {
        height: 160px;
    }

    /* NAVBAR SOCIALS STYLES */

    .navbar-absolute {
        top: 168px;
    }
    
}