﻿/*
    Jessom Selmanllari
    ITWP1050
    Homework 2
*/

/* This rule formats the text in the body */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

/* This rule sets the font color for each element to olive green */
* {
    color: #556B2F;
}

/* This rule formats the footer tag */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
  
}

/* This rule creates a border for the image tag*/
img {
    border: 1px solid black;
    border-radius: 25px;
}

/* This rule formats the linked source */
.external-link::after {
    content: "(external)";
    color: #ff5733;
}
