/*CSS Document used for Homework 3 Assignment
Author: Marcus Shutran 0612328
Course: ITWP1050
File: styles.css
*/

body {
    background-image: url("images/bigKittyBkgrnd.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 {
  background-image: url('images/nicodemus02.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image fills the space */
  text-align: center;
  font-size: 2.5em;
    color:lime;
  padding: 100px 0; /* Adjust to show more/less of the image */
  background-color: rgb(0, 0, 0, 0.7); /* Optional: ensures text is readable */
}

h2 {

    text-align: center;
    font-size: 2.5em;
    color:lime;
    background-color: rgb(0, 0, 0, 0.4);
}

p, div {
    text-align: center;
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
    color: darkgreen;
    background-color: rgb(0, 0, 0, 0.6);
}

/*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;
}