/*  Bryce Scott, July 2016 
    This stylesheet.css is a WIP
    You may use this .css but please inform me!
    bryce@brycescott.com
    www.brycescott.com
*/

body {
    font-family: 'Prompt', sans-serif;
    /* 
    Alternative background color:
    background-color: #3385FF; 
    */
    background-color: #252A26;
    padding: 0;
}

#wrapper {
    display: flex;
    position: static;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
    width: 960px;
    align-items: center; 
    
}

#content {
    text-align: left;
    width: 450px;
    padding: 0px 25px 0px 35px;
    height: 450px;
    background-color: #FFFFFF;
    border-radius: 0px 20px 20px 0px;
}

#content a {
    color: blue;
    text-decoration: none;
}

#content a:visited {
  color: blue;
}

#content p {
    font-size: 17px;    
    display: block;
    margin-top: 15px;
    margin-bottom: 17px;
}

#content h1 {
    font-size: 17px;
    font-weight: normal;
    display: inline;
}

nav {
    width: 960px;
    margin: auto;
    padding: 0px;
}
nav
ul {
    text-align: center;
    padding: 0px;
}

nav ul li {
    display: inline-block;
    /* width: 75px; */
    letter-spacing: 1px;
}

nav ul li a {
    display: block;
    color: whitesmoke;
    text-decoration: none;
}

nav ul li a:hover {
    color: orange;
}

#pic {
    display: block;
    position: relative;
    height: 450px;
    width: 450px;
    background-image: url("bryce-orange.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    border-radius: 20px 0px 0px 20px;
}

footer {
    text-align: center;
    font-size: small;
    color: #777777;
    position: relative;
    bottom: 10px;
}

#footer-content {
    margin-top: 10px;
    font-size: 12px;
    position: static;
    
}

@media only screen and (max-width: 960px) {
    #wrapper {
        display: block;
        width: 80vw;
    }
    #pic {
        display: block;
        width: 80vw;
        height: 80vw;
        border-radius: 0vw;
        
    }
    #content {
        display: inline-block;
        width: 70vw;
        /*padding: 0; */
        margin: 0px;
        padding: 0vw 5vw 0vw 5vw;        
        border-radius: 0vw;
        height: auto;
    }
    
    
    nav {
        width: 80vw;
        display: block;
        margin: auto;
    }
    
    nav ul li {
        display: inline-block;
        width: 75px;
        margin: 0px;
        /*float: left;*/
        /*margin-right: 10vw;
        margin-left: 6vw;*/
        font-size: 15px;
    }
    footer {
    text-align: center;
    font-size: small;
    color: #777777;
    margin-top: 0px;
    }

#footer-content {
    font-size: 10px;
    position: relative;
    top: 10px;
    }

    
}