﻿/* background of entire website to blue with fixed margin and padding*/
body {
    background-color: darkslateblue;
    padding: 0;
    margin: 0;
}

/*format of 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;
    }

/*class aplied to imgs to float left*/
.leftimg {
    float: left;
    width: 270px;
    height: 340px;
}

/*class applied to imgs to float right*/
.rightimg {
    float: right;
    width: 270px;
    height: 340px;
}

/*formatting applied to img elements*/
img {
    padding: 15px;
}

/*general format of paragraphs*/
p {
    font-family: 'Times New Roman';
    line-height: 35px;
    font-weight: bold;
    font-size: 100%;
    text-align: center;
    color: darkred;
    margin: 10px 100px 10px;
    padding: 50px;
    background-color: palevioletred;
    border-style: solid;
    border-color: darkred;
    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: 600px) {
    .leftimg {
        position: center;
        float: none;
        width: 100%;
        height: 300px;
        padding-left: 30px;
        padding: 0 15px 10px;
        align-content: center;
    }

    .rightimg {
        position: center;
        float: none;
        width: 100%;
        height: 300px;
        padding: 0 15px 10px;
        align-content: center;
    }

    /*properties applied for nav system: font-size and padding*/
    div span a {
        font-size: 150%;
        padding-right: 50px;
        display: block;
    }

    /*general format of paragraphs*/
    p {
        margin: 10px 0 10px;
        width: 80%;
    }
}
