/*CSS Document used for the coffee table homework assignment
Author: Marcus Shutran 0612328
Course: ITWP1050
File: styles.css
*/

body {
    background-image: url("images/marcusFretless.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 1em;
    margin-bottom: auto;
    font-family: Arial, sans-serif;
    color: darkgreen;
}

h1, h2 {
    text-align: center;
    font-size: 2.5em;
    color:lime;
}

p, div {
    text-align: center;
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
    color:green
}
/*caption tag*/

.caption {
    font-family: Impact, "Franklin Gothic Bold", "Arial Black", "sans-serif";
    font-weight: bold;
    font-size: 1.75em;
    padding-bottom: 0.5em;
}

/*responsive image class*/

.responsive {
    max-width: 100%;
    height: auto;
    border: 1px solid #51471A;
    border-radius: 10px;
}
/*ID*/

.validation {
    text-align: center;
}

/*media query that hides the image when the screen size is @ 550 pixels or lower*/

@media only all and (max-width: 550px) {

    img {
        display: none;
    }
}