/* 
Name: Klajdi Bicaku
Course: ITWP 1050
Assignment: Homework 2
Description: External CSS styling file
*/

/* Universal selector */
* {
    color: #333;
}

/* Body */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    background-color: #f5f7fa;
}

/* Center main content */
main {
    max-width: 800px;
    margin: auto;
}

/* Heading */
h1 {
    color: #1a4d8f;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    text-align: left;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Image */
img {
    display: block;
    margin: 20px auto;
    border: 2px solid #1a4d8f;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Links */
a {
    color: #1a4d8f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Required pseudo-element */
.external-link::after {
    content: " (external)";
    color: red;
}