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

/* basic page styling */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8fafc;
    color: #102033;
    text-align: center;
    font-size: 18px;
}

/* heading styling */
h1 {
    background-color: #1e3a8a;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 48px;
}

/* paragraph styling */
p {
    max-width: 900px;
    margin: 25px auto;
    line-height: 1.7;
}

/* responsive image styling */
img {
    max-width: 100%;
    width: 420px;
    height: auto;
    margin: 20px;
    border: 3px solid #1e3a8a;
    border-radius: 12px;
    padding: 5px;
    background-color: white;
}

/* responsive section with five items */
.responsive-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    max-width: 1000px;
}

/* five responsive layout items */
.item {
    background-color: #dbeafe;
    color: #102033;
    padding: 25px;
    border-radius: 12px;
    font-size: 20px;
    flex: 1 1 160px;
    border: 2px solid #1e3a8a;
}

/* media query changes h1 and body text at 800px or less */
@media (max-width: 800px) {
    h1 {
        font-size: 32px;
    }

    body {
        font-size: 15px;
    }
}

/* media query changes background color at 600px or less */
@media (max-width: 600px) {
    body {
        background-color: #e0f2fe;
    }

    .item {
        flex: 1 1 100%;
    }
}

/* footer styling */
footer {
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
}

/* link styling */
a {
    color: #1d4ed8;
    font-weight: bold;
}