﻿/*style sheet for home page - .index.html*/


/*body of page*/
body {
    width: 100%;
    background-color: #F8E9A1;
    margin: 0; /*remove the padding and margin from the body */
    padding: 0;
}

/*header of page*/
h1 {
    text-align: center;
    color: #374785;
    font-family: "Lucida Bright";
    font-size: 50pt;
    margin: 0;
    padding-top: 10px;
}

/*paragraph text inside header*/
h4 {
    color: #24305E;
    font-size: 18pt;
    font-family: "Century Gothic";
    font-weight: normal;
    margin: 0;
    text-align: center;
}

/*navigation bar links*/
#navigation-bar a {
    font-family: "Lucida Bright";
    font-size: 25pt;
    padding: 0;
}

/*navigation bar div*/
#navigation-bar {
    margin: 0;
    padding: 0;
}

/*temple t picture*/
#temple-t {
    position: relative; /*position is relative to its normal positioning*/
    width: 100%;
    height: 100%;
}

/*temple seal picture*/
#temple-seal {
    position: relative; /*position is relative to its normal positioning*/
    width: 95%;
    height: 65%;
    top: 125px;
    left: 0;
}

/*first column*/
#first-column {
    width: 33.3%;
    height: 650px;
    box-sizing: border-box; /*width and height includes padding and border*/
    float: left;
    background-color: #24305E;
    margin: 0;
    text-align: center;
}

/*middle column*/
#middle-column {
    width: 33.3%;
    height: 650px;
    box-sizing: border-box; /*width and height includes padding and border*/
    float: left;
    background-color: #374785;
    text-align: center;
    padding: 10px;
    margin: 0;
}

    /*paragraph text in middle column*/
    #middle-column p {
        font-size: 18pt;
        font-family: "Century Gothic";
        color: #F8E9A1;
        position: relative; /*position is relative to its normal positioning*/
        top: 200px;
    }

/*third column*/
#third-column {
    width: 33.4%;
    float: right;
    height: 650px;
    background-color: #A8D0E6;
    box-sizing: border-box; /*width and height include padding and border*/
    text-align: center;
    margin: 0;
    padding: 5px;
}

/*footer div*/
#footer {
    position: relative; /*position is relative to its normal positioning*/
    background-color: #F7C6C6;
    width: 100%;
    height: 6%;
    padding: 10px;
    clear: both; /*does not allow floating on either side of element*/
    box-sizing: border-box; /*width and height include border and padding*/
    margin: 0;
}

    /*footer link*/
    #footer a {
        font-family: "Century Gothic";
        font-weight: normal;
        color: #24305E;
    }

    /*paragraph text in footer*/
    #footer p {
        position: relative; /*position is relative to its normal positioning*/
        font-family: "Century Gothic";
        font-weight: normal;
        float: right;
        color: #24305E;
        margin: 0;
    }

/*home link div in navigation bar*/
#home-link {
    background-color: #A8D0E6;
    width: 25%;
    float: left;
    text-align: center;
    font-weight: bold;
}

/*labs link div in navigation bar*/
#labs-link {
    background-color: #F7C6C6;
    width: 25%;
    float: left;
    text-align: center;
    margin: 0;
    font-weight: bold;
}

/*about me link div in navigation bar*/
#about-link {
    background-color: #A8D0E6;
    width: 25%;
    float: left;
    text-align: center;
    font-weight: bold;
}

/*resume link div in navigation bar*/
#portfolio-link {
    background-color: #F7C6C6;
    width: 25%;
    float: left;
    text-align: center;
    font-weight: bold;
}

/*links when mouse hovers over them*/
a:hover {
    color: #F8E9A1;
}

/*all links on page*/
a:link {
    text-decoration: none;
}

/*Styling for small screens*/
/*I used this to compare with school computer and my personal laptop*/
@media screen and (max-width: 600px) {
    body {
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    h4 {
        font-size: 15pt;
    }

    #navigation-bar a {
        font-size: 15pt;
    }

    #first-column {
        width: 100%;
    }

    #middle-column {
        width: 100%;
    }

    #third-column {
        width: 100%;
        padding: 5px;
    }

    #temple-seal {
        width: 90%;
        left: 0;
    }
}
