@import url("imported_stylesheet.css");

p {
    color: blue;
    background-color: #fcf9d9;
}

h1 {
    border-color: rgb(40, 200, 100);
    border-style: solid;
    text-align: center;
}

h1:hover,
h2:hover {
    color: red;
}

blockquote>p::before {
    color: cadetblue;
    content: "« ";
}

blockquote>p::after {
    color: cadetblue;
    content: " »";
}

blockquote,
blockquote p {
    background-color: aliceblue;
}
