h1 {
    color: blue;
}

p {
    color: red;
}
body {
    background-color: whitesmoke;
    font-family: Arial, sans-serif;
}

h1 {
    color: navy;
}

p {
    color: darkgreen;
    font-size: 18px;
}
.special {
    color: purple;
    font-weight: bold;
}
#unique-para {
    color: orange;
    text-decoration: underline;
}
.flex-container {
    display: flex; /* 👈 enables flexbox */
    justify-content: space-around; /* spacing between items */
    align-items: center; /* vertical alignment */
    background-color: #ddd;
    padding: 20px;
}

.box {
    background-color: teal;
    color: white;
    padding: 20px;
    font-size: 18px;
    border-radius: 5px;
}
.fancy-text {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: deepskyblue;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}
/* Targets all <p> tags inside .blog-post only */
.blog-post p {
    color: darkgreen;
}

/* Only the first paragraph inside .blog-post */
.blog-post p:first-of-type {
    font-weight: bold;
}

/* Style the <a> link only inside .blog-post */
.blog-post a {
    color: blue;
    text-decoration: none;
}

/* Change link color on hover */
.blog-post a:hover {
    color: red;
    text-decoration: underline;
}
