/*


 */
.blue-paragraph, #blue-paragraph {
    color: cadetblue;
}

p:nth-of-type(5) {
    font-family: fantasy;
    font-family: "Parchment MF";
    font-weight: bolder;
    font-size: 150%;
}

p:first-letter {
    font-size: 130%;
    font-weight: bold;
}

#author {
    font-style: italic;
}

[data-keywords="Mom"] {
    font-weight: bold;
}

:not(h3) {
    font-size: large;
}

[data-keywords*="Dad"]::before {
    color: orange;
    content: "So yeah, I wasn\'t a handsome guys";
}

body {
    text-align: center;
}

:nth-child(8) {
    color: #0a6ebd;
}

h3::after {
    content: " \01F923";
}

@font-face {
    font-family: 'Parchment MF';
    src: url('Parchment MF.ttf') format('truetype');
}


/*
Everything I'm allowed to use:

.blue-paragraph, #blue-paragraph { } (ALL DONE)
p:nth-of-type(5) { } (ALL DONE)
p:first-letter { } (ALL DONE)
#author { } (ALL DONE)
[data-keywords="Mom"] { } (ALL DONE)
:not(h3) { } (ALL DONE)
[data-keywords*="Dad"]::before { } (ALL DONE)
body { } (ALL DONE)
:nth-child(8) { } (ALL DONE)
h3::after { } (ALL DONE)

Specified Amounts:
color (3) (1 DONE) (1 DONE) (1 DONE) (ALL DONE)
content (2) (1 DONE) (1 DONE) (ALL DONE)
font-family (1) (1 DONE) (ALL DONE)
font-size (2) (1 DONE) (1 DONE) (ALL DONE)
font-style (1) (1 DONE) (ALL DONE)
font-weight (1) (1 DONE) (ALL DONE)
text-align (1) (1 DONE) (ALL DONE)

Any Amount:
cadetblue (ALL DONE)
large (ALL DONE)
"So yeah, I wasn\'t a handsome guys" (ALL DONE)
130% (ALL DONE)
fantasy (ALL DONE)
center (ALL DONE)
italic (ALL DONE)
" \01F923" (ALL DONE)
#0a6ebd (ALL DONE)
orange (ALL DONE)
orange (ALL DONE)
bold
 */