body {
    background: lightgrey;
}

.sProjTitle h1 {
    width: 95%;
    text-align: center;
    margin-top: 25px;
}

.sProjTitle,
p {
    width: 95%;
    text-align: left;
    margin-top: 25px;
}

.sProj__content {
    width: 95%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.panel {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 75px;
}

.desc {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 45%;
}

h3 {
    margin-bottom: 0;
}

.img-thumbnail {
    width: 45%;
    margin-bottom: 15px;
}

@media screen and (max-width: 797px) {
    .sProj__content {
        width: 100%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
    }

    .panel {
        width: 100%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: space-evenly;
        padding-top: 25px;
    }
    .desc {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        margin-bottom: 15px;
        width: 95%;
    }
    .img-thumbnail {
        width: 95%;
        margin-bottom: 15px;
    }
}

/* BEGIN NAVIGATION */
/* .navbar: .nav-brand, [toggle/#menu[.nav-link]] */
.navbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: baseline;
    background: rgb(18, 37, 55);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 100%;
    font-size: 18px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
}

.nav-main,
li {
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline;
    list-style-type: none;
}

.nav-link {
    padding-right: 25px;
    color: lightgrey;
    display: inline;
}

.nav-link:link visited {
    color: lightgrey;
}

.nav-link:hover {
    color: rgb(189, 22, 167);
}

@media screen and (max-width: 479px) {
    .navbar {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .nav-toggle {
        position: absolute;
        z-index: 1030;
        top: 10px;
        right: 28px;
        cursor: pointer;
        color: lightgrey;
        font-size: 22px;
        display: block;
    }
    .nav-main {
        margin-top: 5px;
        margin-block-end: 5px;
        list-style-type: none;
        display: none;
        background: rgb(18, 37, 55);
    }
    .nav-link {
        padding-left: 10px;
        font-size: 16px;
        color: lightgrey;
    }
    .open {
        display: block;
    }
} /* END NAVIGATION */
