/* UW Stylesheet */

/* UW COLOR SCHEME */
/* Purple #4b2e83 */

/* Dark gold #85754d */
/* Light gold #b7a57a don't use on purple */
/* Light light gold #e8e3d3 */

/* A Section #69434C */
/* A Project #905F71 */





#nav-project a:hover {
    color: #85754d;
}




/* sectionings */
div.section {
    background-color: #4b2e83;
}

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



    /* SECTION SPECIFIC */

    /* feedback */
    div.two-third {
        float: left;
        width: 70%;
        margin-right: 1%;
    }
    div.one-third {
        float: left;
        width: 28%;
        
        padding-bottom: 2%;
    }

        @media only screen and (max-width: 985px) {
            div.two-third {
                width: 100%;
            }
            div.one-third {
                width: 100%;
            }
                div.one-third img {
                    width: 45%;
                    margin-left: 28%;
                }
        }
/* end sectionings */




/* regular text */
h1.project {
    padding-top: 5%;
    color: #4b2e83;
}

h2 {
    color: black;
}

h3 {
    color: #591cd4;
}

p.project {
    color: black;
}

/* a.project {
    color: #8f57ff;
}
a.project:hover {
    color: #b7a57a;
} */

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





/* alternate text */
div.section {
    /* height: 100px; */
    background-color: #4b2e83;
}
    h2.section {
        color: white;
    }
    h3.section {
        color: #e8e3d3;
    }
    p.section {
        color: white;
    }
    a.section {
        color: rgb(230, 230, 230);
    }
    a.section:hover {
        color: #b7a57a;
    }
    ul.project-background-section,
    ul.project-bullets-internal-section {
        color: white;
    }
/* end alternate text section */



img.uw-phone {
    width: 60%;
}

@media only screen and (max-width: 985px) {
    img.uw-phone {
        width: 100%;
    }
}






/* 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: #e8e3d3 ;
    color: #4b2e83;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

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