/* Emily Gorgees ITWP1050 
This module’s homework assignment requires you to create a web page incorporating various
element selectors, text styling, a web font, backgrounds and gradients, an external CSS
file, and successfully validate your work. */ 

/* Setting the background */ 
.gradient-background {
    background-image: linear-gradient(to right, rgba(139, 69, 19, 0.8), rgba(245, 222, 179, 0.7), rgb(247, 240, 206));
    width: 100%;
    height: 200px;
    background-size: cover; 
    background-position: center; 
}
/* Setting another linear gradient background*/
.color-stop-gradient p {
    background-image: linear-gradient(to left, rgb(187, 145, 139) 30%, rgb(129, 82, 60) 70%, rgb(226, 195, 177));
    width: 100%;
    height: 200px;
    background-size: 100% 100%;
    background-position: top left;
}
/*Styling the h1 element*/
h1 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    font-variant: small-caps;
    white-space: nowrap;
    color: #333;
    padding: 20px;
    text-align: center;
}
/* Setting the style and line height for the main content within the body */
body {
    line-height: 1.8; 
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    padding: 20px;
}
/*styling the first image*/
.first-image {
    width: 20%;  
    height: auto;
    margin: 20px auto;
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
    
}
/* Styling the second image */
.second-image {
     width: 20%;  
    height: auto;
    margin: 20px auto;
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
    
}