/* =========================
   ARTICLE SECTIONS (Card Style)
========================= */
article {
    background-color: #1e293b;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
}

/* Headings */
h2 {
    color: #facc15;
    margin-bottom: 15px;
}

/* Paragraph spacing */
article p {
    margin-bottom: 15px;
}

/* Pseudo-element selector */
article p::first-letter {
    font-size: 150%;
    font-weight: bold;
    color: #facc15;
}

/* Images seem to break without this. reminant of origional image layout. */
article div figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
}


/* Seperated for image of cat. */
.left-image,
.right-image {
    text-align: center;
    margin: 20px;
}

/* =========================
   ATTRIBUTE SELECTOR
========================= */
a[target="_blank"] {
    font-style: italic;
}