﻿/* background of entire website to blue with fixed margin and padding*/
body {
    background-color: darkslateblue;
    padding: 0;
    margin: 0;
}

/*format of text in heading and nav bar w/ div*/
.headformat {
    font-family: 'Times New Roman';
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* font-size and color applied to heading on all pages ("Welcome to")*/
h1 {
    font-size: 300%;
    color: orangered;
}

/*general properties of divs on all pages w/ background color and text alignment in middle of div*/
div {
    background-color: orangered;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

    /*properties applied for nav system: font-size and padding*/
    div span a {
        font-size: 150%;
        padding-right: 25px;
        display: inline;
    }

/*First type of paragraph, one used for objective of lab and blog entry post at end*/
.lab-objective-paragraph-format1 {
    font-size: 100%;
    text-align: left;
    margin: 10px 200px 5px;
    font-weight: normal;
    padding: 15px 45px 15px;
}

/*First type of paragraph, one used for objective of lab and blog entry post at end*/
.lab-objective-paragraph-format2 {
    font-size: 150%;
    text-align: center;
    margin: 10px 300px 5px;
    font-weight: bold;
    padding: 15px 45px 15px;
}

/*class applied to imgs to float right*/
.rightimg {
    float: right;
    padding-right: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
}

/*class applied to imgs to float right*/
.leftimg {
    float: left;
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.lab-component-div1 {
    background-color: palevioletred;
    border-style: solid;
    border-color: darkred;
    margin: 10px 40px;
    border-radius: 15px;
}

.lab-component-div2 {
    background-color: darkred;
    margin: 10px 40px;
    border-radius: 15px;
}

/*general formatting of paragraphs*/
p {
    font-size: 150%;
    text-align: center;
    color: darkblue;
    font-weight: bold;
    background-color: lightsteelblue;
    border-style: solid;
    border-color: darkred;
    margin: 10px 300px 5px;
    padding: 10px 5px 10px;
    border-radius: 15px;
}

/*ID applied for fixed footer w/ info on all Pages*/
#footer {
    font-size: 8pt;
    clear: both;
    color: white;
    position: fixed;
    bottom: 0;
    float: left;
    padding: 3px;
}

@media screen and (max-width: 800px) {

    /*properties applied for nav system: font-size and padding*/
    div span a {
        font-size: 150%;
        padding-right: 50px;
        display: block;
    }

    /*First type of paragraph, one used for objective of lab and blog entry post at end*/
    .lab-objective-paragraph-format1 {
        font-size: 100%;
        text-align: center;
        margin: 0;
        width: 80%;
        padding: 15px 45px 15px;
    }

    /*First type of paragraph, one used for objective of lab and blog entry post at end*/
    .lab-objective-paragraph-format2 {
        text-align: center;
        margin: 0;
        width: 80%;
        padding: 15px 45px 15px;
    }

    /*general formatting of paragraphs*/
    p {
        text-align: center;
        width: 80%;
    }
}
