/* Bakery Stylesheet */


/* Dark Purple: #3B1F1B */
/* Purple Mauve: #69434C */
/* Mauve: #905F71 */
/* Pink: #F0A4C8 */



img#title {
    /* logo */
    display: block;
    float: left;
    width: 30%;
    margin-bottom: 2%;
}


#nav-project a:hover {
    color: #F0A4C8;
}

/* SECTIONINGS */
div.section {
    background-color: #3B1F1B;
}

div.wrapper {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
}


div.row {
    /* height: 100px; */
    /* background-color: orange; */
    width: 100%;
    clear: both;
    overflow: hidden;
}
    div.r-description {
        float: right;
        width: 68%;
        margin-left: 2%;
    }
    div.l-description {
        float: left;
        width: 68%;
        margin-left: 2%;
    }
/* end sectionings */




img.l {
    display: block;
    margin: auto;
    float: left;
    width: 30%;
}

img.r {
    display: block;
    margin: auto;
    float: right;
    width: 30%;
}





@media only screen and (max-width: 985px) {
    img.two {
        width: 80%;
    }

    img.l, img.r,
    div.r-description, div.l-description {
        width: 100%;
        padding-top: 2%;
    }

}




/* regular text */
h2 {
    color: black;
}

h3 {
    color: #69434C;
}

p.project {
    color: black;
}

a.project {
    color: #905F71;
}
a.project:hover {
    color: #F0A4C8;
}

ul.project-background,
ul.project-bullets-internal {
    color: black;
}





/* alternate text */
    h2.section {
        color: white;
    }
    h3.section {
        color: #F0A4C8;
    }
    p.section {
        color: white;
    }
    a.section {
        color: #F0A4C8;
    }
        a.section:hover {
            color: #905F71;
        }
    ul.project-background-section,
    ul.project-bullets-internal-section {
        color: white;
    }
/* end alternate text section */






/* BACK TO TOP BUTTON */
button#top {
    display: none;
    position: fixed;
    /* space outside of button */
    bottom: 50px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #905F71;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

button#top:hover {
    background-color: #F0A4C8;
    color: white;
}