/* Kristen Glodich - Course ITWP 1050 - Homework 2 Assignment, basic HTML & CSS skills on a poem or poem related work*/

/* body requirements */
body {
    margin: 25px;
    font-family: 'Arial', 'Helvetica', 'sans-serif';
    font-size: 1em;
    text-align: center;
    line-height: 1.6;
}

/*universal selector requirements for text color (dark blue chosen), also background color */
* {
    color: #00008B;
    background-color: #d3d3d3;
}

/*footer margin requirements and also center alignment*/
footer {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    border-top: 1px solid black;
}

/*image requirements */
img {
    border: 1px solid black;
    border-radius: 10px;
}

/* (external) link requirements (a pale red color chosen)*/
.external-link::after {
    content: " (external)";
    color: #D9544D;
    font-size: 0.9em;
}

/*centers the header content*/
header {
    text-align: center;
}

/* div box for sources */
div {
    width: 80%;
    max-width: 500px;
    height: 100px;
    padding: 2px;
    border: 1px solid black;
    border-radius: 10px;
    margin: auto;
  }

/*adds space between paragraphs (chronic <br> abuser)*/
p {
    margin-bottom: 25px;
}