/* Page background */
body {
    background-color: #e6ecf0;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    background-color: #ffffff;
    padding: 10px;
    margin: 10px auto;
}

/* Shared item styles */
.item1,
.item2 {
    width: 450px;
    padding: 10px;
    margin: 10px;
}

/* Item-specific backgrounds */
.item1 {
    background-color: #f4f1ea;
}

.item2 {
    background-color: #e8f4f8;
}

/* ITEM 1 TYPOGRAPHY */
.item1 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c2c2c;
    line-height: 1.2;
}

.item1 h2 {
    font-family: 'Gravitas One', serif;
    font-size: 22px;
    color: #6a5acd;
    line-height: 1.4;
}

.item1 p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
}

/* ITEM 2 TYPOGRAPHY (using specificity) */
.item2 h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    color: #1f3c88;
    line-height: 1.2;
}

.item2 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    color: #0b7285;
    line-height: 1.4;
}

.item2 p {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: #2f4f4f;
    line-height: 1.7;
}
