/* 
Name: Raneen Algamal
Course: ITWP 1050
Assignment: Homework 3
*/


@font-face {
    font-family: "PlayfairCustom";
    src: url("fonts/PlayfairDisplay-Regular.ttf");
}

/* body styling with first background gradient */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    line-height: 1.9;
    background: linear-gradient(to right, #dbeafe 0%, #ffffff 50%, #fef3c7 100%);
    color: #0f172a;
}

/* header styling with second background gradient */
header {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: linear-gradient(to right, rgba(30, 64, 175, 0.95) 0%, rgba(59, 130, 246, 0.85) 50%, rgba(147, 197, 253, 0.95) 100%);
}

/* h1 styling */
h1 {
    font-family: "PlayfairCustom", Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    letter-spacing: 4px;
    font-variant: small-caps;
    white-space: nowrap;
    color: white;
    margin: 0;
}

/* paragraph styling */
p {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
}

/* first image styling */
img {
    width: 420px;
    max-width: 90%;
    height: auto;
    margin: 15px;
    border: 3px solid #1e3a8a;
    border-radius: 12px;
    padding: 6px;
    background-color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}

/* second image styling */
.second-image {
    border: 3px dashed #7c2d12;
    border-radius: 20px;
    transform: rotate(-1deg);
}

/* footer styling */
footer {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(to right, #e2e8f0 0%, #f8fafc 50%, #e2e8f0 100%);
}

/* source line */
.source {
    font-weight: bold;
}

/* link styling */
a {
    color: #1d4ed8;
}

a:hover {
    color: #b91c1c;
}