body {
    /* background-color: rgb(15, 33, 87); */
    background-color: white;
}


/* Frame container */
.frame {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    min-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
}

/* Each row */
.text-and-img,
.text-and-text,
.text-only {
    display: flex;
    align-items: stretch;
}

.text-and-img:first-child,
.text-and-text:first-child,
.text-only:first-child {
    border-top: none;
}

/* Each cell inside a row */
.text-and-img>*,
.text-and-text>*,
.text-only>* {
    padding: 1rem;
    box-sizing: border-box;
}

.text-and-img>*:first-child,
.text-and-text>*:first-child,
.text-only>*:first-child {
    border-left: none;
}

/* Flexible text cells */
.text-and-img .text,
.text-and-text .text,
.text-only .text {
    flex: 1 1 0;
    text-align: left;
    display: block;
    flex-direction: column;
}

.text-and-img .text {
    max-width: 530px;
}

/* Image cell: shrink to fit content */
.text-and-img .img {
    flex: 0 0 auto;
    display: inline-flex;
    align-self: center;
}

.text-and-img .img img {
    display: block;
    height: auto;
    max-width: 100%;
}

/* Desktop (>640px) alignment */
@media (min-width: 641px) {
    .text-and-img .img {
        margin-left: auto;
    }

    .text-and-text .text:last-child {
        text-align: right;
        justify-content: flex-end;   /* left aligned horizontally */
    }
}

/* Mobile (<=640px): stack children */
@media (max-width: 640px) {

    .text-and-img,
    .text-and-text,
    .text-only {
        flex-direction: column;
    }

  .text-and-img { flex-direction: column-reverse; }

    .text-and-img>*,
    .text-and-text>*,
    .text-only>* {
        width: 100%;
        border-left: none;
        /* no verticals when stacked */
        /* border-top: 1px solid #000;   brick rows */
    }

    .text-and-img>*:first-child,
    .text-and-text>*:first-child,
    .text-only>*:first-child {
        border-top: none;
    }

    .text-and-text .text:last-child {
        text-align: left;
    }

    .text-and-img .img {
        align-self: center;
    }

    .text-and-img .img img {
        margin: 0 auto;
    }
}

.navbar {
    /* border-bottom: 1px solid #000; */
    margin-left: -32px;
    margin-right: -32px;
    margin-bottom: 32px;
    margin-top: 12px;
    padding-bottom: 16px;
    /* padding-bottom: 32px; */
    padding-left: 48px;
    padding-right: 48px;
}

/* .navbar {
    margin-bottom: 32px;
    margin-top: 16px;
} */

.navbar a {
    margin-right: 24px;
}

.project-desc {
    max-width: 600px;
}

@media (min-width: 641px) {
.project-blurb {
    max-width: 250px;
}
}

.experience-desc {
    max-width: 700px;
}

.footer {
    min-height: 180px;
}

.burgerbox {
    margin-top: 16px;
    padding-bottom: 8px;
}

img#menasa {
    width: 263px;
    border-radius: 2px;
}

@media (max-width: 640px) {
img#menasa {
    margin-top: 32px;
}
}