﻿/* 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;
}

/*second header on website*/
h2 {
    font-family: 'Times New Roman';
    text-align: center;
    color: lightsteelblue;
    font-weight: bold;
    margin: 10px;
    padding: 10px;
}

/*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;
    }


/*class aplied to imgs to float left*/
.leftimg {
    float: left;
    padding-left: 30px;
    padding-top: 40px;
    width: 240px;
    height: 300px;
    border-radius: 15px;
}

/*class applied to imgs to float right*/
.rightimg {
    float: right;
    padding-right: 30px;
    padding-top: 40px;
    width: 240px;
    height: 300px;
    border-radius: 15px;
}

/*general properties of paragraphs on home page specifically*/
.home-paragraph-format {
    font-family: 'Times New Roman';
    font-size: 100%;
    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) {
    .leftimg {
        position: center;
        float: none;
        width: 99%;
        height: 400px;
        padding-left: 30px;
        padding: 0 30px 10px;
    }

    .rightimg {
        position: center;
        float: none;
        width: 99%;
        height: 400px;
        padding: 0 30px 10px;
    }

    /*properties applied for nav system: font-size and padding*/
    div span a {
        font-size: 150%;
        padding-right: 50px;
        display: block;
    }

    /*general properties of paragraphs on home page specifically*/
    .home-paragraph-format {
        margin: 10px 20px 5px;
    }
}
