/****************************************************************************

    CSS for portfolio page of jasonrboyer.com
    Author: Jason Boyer
    Date: 8/5/2016

****************************************************************************/



/****************************************************************************

    CSS for entire page base css is for mobile

****************************************************************************/

html,
body{
    margin: 0%;
    padding: 45px 0 0 0;
    background-image: url("../images/future.jpeg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: white;
    font-family: antonio,sans-serif;
}



p, .info, ol {
    font-family: playfair, serif;
}

p{
    font-size: .8em;
}




@font-face {
    font-family: antonio;
    src: url('../fonts/Antonio-Regular.ttf');
}

@font-face {
    font-family: playfair;
    src: url('../fonts/PlayfairDisplay-Regular.otf');
}

h3 {
    margin-bottom: 3vh;
}

.content {
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    background-color: rgba(211,211,211,.5);
    min-height: 100vh;
}

ol {
    list-style: upper-roman;
}

.category {
    margin-top: 15vh;
}

.proprietary {
    padding-top: 45%;
    text-align: center;

}



/****************************************************************************

    CSS for projects page base css is for mobile

****************************************************************************/

.project {
    background-color: darkgray;
    margin-bottom: 20px;
    margin-top: 5vh;
}

.background{
    background-color: white;
    width: 100%;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
}

.project-description {
    padding: 5px;
}

.mybtn {
    background-color: darkslategrey;
    color: darkgrey;
    margin-bottom: 10px;
    margin-top: 20px;
}

.mybtn:hover {
    background-color: black;
    color: darkgrey;
}





/****************************************************************************

    CSS for projects page base css is for mobile

****************************************************************************/

@media screen and (min-width: 700px){
    .project {
        display: flex;
        height: 400px;
    }

    img {
        width: 400px;
        height: 400px;
    }

    .project-description {
        width: 100%;
        overflow-y: scroll;
    }
    p{
        font-size: 1em;
    }

}

@media screen and (min-width: 1300px){
    p{
        font-size: 1em;
    }

}