﻿/*style sheet for about me page - about.html*/



/*body of the page*/
body {
    background-color: #A8D0E6;
    width: 100%;
    margin: 0; /*remove the padding and margin from the body */
    padding: 0;
}

/*page header*/
h1 {
    color: #24305E;
    width: 100%;
    font-size: 45pt;
    font-family: "Lucida Bright";
    text-align: center;
    border: 1px;
    padding-bottom: 25px;
    padding-top: 25px;
    margin: 0;
}

/*navigation bar links*/
#navigation-bar a {
    font-family: "Lucida Bright";
    font-size: 25pt;
    padding: 0;
}

/*navigation bar*/
#navigation-bar {
    margin: 0;
    padding: 0;
}

/*home link div on navigation bar*/
#home-link {
    width: 25%;
    background-color: #F8E9A1;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*labs link div on navigation bar*/
#labs-link {
    width: 25%;
    background-color: #F7C6C6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*about me link div on navigation bar*/
#about-link {
    width: 25%;
    background-color: #F8E9A1;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*resume link div on navigation bar*/
#portfolio-link {
    width: 25%;
    background-color: #F7C6C6;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #374785;
}

/*first column div*/
#first-column {
    background-color: #374785;
    width: 50%;
    box-sizing: border-box; /*the width and height of the div includes the padding and border*/
    float: left;
    text-align: center;
    height: 600px;
    padding: 10px;
    padding-top: 5px;
}

/*bucks picture*/
#bucks {
    position: relative; /*position is relative to its normal positioning*/
    top: 10px;
    width: 60%;
    height: 65%;
    border: 5px solid #F7C6C6;
}

/*paragraph text inside the first column*/
#first-column p {
    font-size: 18pt;
    color: #F7C6C6;
    font-family: "Century Gothic";
    font-weight: normal;
}

/*second column div*/
#second-column {
    background-color: #24305E;
    width: 50%;
    box-sizing: border-box; /*the width and height of the div includes the padding and border*/
    float: left;
    text-align: center;
    height: 600px;
    padding: 10px;
    padding-top: 5px;
}

/*beach picture*/
#beach {
    position: relative; /*position is relative to its normal positioning*/
    width: 70%;
    height: 55%;
    border: 5px solid #A8D0E6;
    top: 10px;
    left: 10px;
}

/*paragraph text inside the second/middle column*/
#second-column p {
    font-size: 20pt;
    color: #A8D0E6;
    font-family: "Century Gothic";
    font-weight: normal;
}

/*footer div*/
#footer {
    position: relative; /*position is relative to its normal positioning*/
    background-color: #F8E9A1;
    width: 100%;
    padding: 10px;
    clear: both; /*does not allow floating elements on either side*/
    box-sizing: border-box; /*the width and height of the div include the padding and border*/
    margin: 0;
}

    /*link in the footer*/
    #footer a {
        font-family: "Century Gothic";
        font-weight: normal;
        color: #24305E;
    }

    /*paragraph text inside of footer div*/
    #footer p {
        position: relative; /*position is relative to its normal positioning*/
        font-family: "Century Gothic";
        font-weight: normal;
        float: right;
        color: #24305E;
        margin: 0;
    }

/*all links on the page*/
a:link {
    text-decoration: none;
}

/*all links on the page when the mouse hovers over them*/
a:hover {
    color: #A8D0E6;
}







@media screen and (max-width: 600px) {
    body {
        margin: 0;
        padding: 0;
    }

    #navigation-bar a {
        font-size: 15pt;
    }

    #home-link {
        width: 25%;
        float: left;
    }

    #labs-link {
        width: 25%;
        float: left;
    }

    #about-link {
        width: 25%;
        float: left;
    }

    #portfolio-link {
        width: 25%;
    }

    #first-column {
        width: 100%;
    }

    #second-column {
        width: 100%;
        clear: both;
    }

    #bucks {
        position: relative;
        width: 65%;
        height: 300px;
        top: 45px;
    }

    #beach {
        position: relative;
        width: 90%;
        height: 40%;
        top: 50px;
        left: 0;
    }
}
