
nav, main, footer {
    flex-shrink: 0;
}
#brandTitle {
    font-family: "Lobster Two";
    font-style: italic;
    color: #413F3D;
    font-size: 38px;
    font-weight: 400;
    padding-top: 25px;
}

#welcome, #main-caption {
    color: #413F3D;
    text-align: center;
    text-decoration: none;
    font-family: 'Cabin';
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.143em;
    padding: 5px 0px 25px 10px;
}
#main-caption {
    padding-top: 25px;
    text-transform: capitalize;
    letter-spacing: normal;
    font-size: 17px;
}
#main-img-section {
    display: flex;
    justify-content: center;
}
#main-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 600px;
    opacity: 0.95;
    border-radius: 5px;
}
#left-section-container, #right-section-container {
    flex-basis:20%;
}
#center-section-container {
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    background-color: rgb(22, 22, 22);
    height: 50px;
}
@media only screen and (max-width: 600px) {
    body {
    }
    #left-section-container, #right-section-container {
        display: none;
    }
    #center-section-container {
        flex-basis: 100%;
        padding: 10px;
    }
    #main-img {
        width: 75%;
        max-width: 450px;
        height: auto;
        max-height: 450px;
    }
}