body {
    font-family: 'Georgia', serif;
    background-color: #f7f7f7;
    margin: 0 20px;
    padding: 0;
    color: #222;
    display: inline;
}
header {
    text-align: left;
    padding: 30px 20px;
}

header h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.image img {
    width: 50%;
    max-width: 850px; /* controls image size */
    height: 350px;
    border-radius: 12px;

    display: block;
    margin: 0 auto;
}


.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


article p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

h2 {
    margin-top: 40px;
    font-size: 24px;
}

.intro {
    font-size: 20px;
}

.highlight {
    font-weight: bold;
    font-size: 20px;
    margin: 25px 0;
}

.ending {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
}

/* Better spacing for readability */
article {
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    header h1 {
        font-size: 28px;
    }

    article p {
        font-size: 16px;
    }
}
/* Footer main */
footer {
    margin-top: 40px;
    padding: 20px 10%;
    background-color:#f5f5f5;;
    color: #151313;
}

/* Layout */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left side */
.footer-left h3 {
    margin: 0;
    font-size: 18px;
}

.footer-left p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #100f0f;
}

/* Right side */
.footer-right p {
    margin: 0;
    font-size: 14px;
    color: #0c0b0b;
}

/* Optional hover effect */
.footer-right p:hover {
    color: #d04949;
}