/*Course: ITWP 1050
Author: Nicole Wozniak 
Assignment: Homework 2 - CSS Sections*/

/*style for the body selector per hw instructions*/
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

/*style for the Universal selector, making the text color*/
*{
    color: #B22222;
}

/*style for footers Element selector*/
footer{
    margin-top: 50px;
    margin-bottom: 50px;
}

/*style for the source link to be displayed per hw instructions*/
.sourceof::after{
    content: '(external)';
    color: #FF4500;
}

/*styling for the image at the top of the page, made it a bit more rounder and not so large*/
img{
    border: solid 1px #0000;
    border-radius: 20px;
    width: 75%;
}

/*making select text italicized for the story*/
.breath{
    font-style: italic;
}