/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    background-color: rgb(248, 240, 223);
    background-image: url('https://www.startpage.com/av/proxy-image?piurl=https%3A%2F%2Fimages-wixmp-ed30a86b8c4ca887773594c2.wixmp.com%2Ff%2F1b82ba2b-aff7-44e6-9afe-a57a5c42014d%2Fdffrbor-00ef7be2-860a-40e8-9136-9793289fe65a.png%2Fv1%2Ffill%2Fw_390%2Ch_296%2Cstrp%2Fsweet_bro_and_hella_jeff_symbol_by_kingevan210_dffrbor-fullview.png%3Ftoken%3DeyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9Mjk2IiwicGF0aCI6IlwvZlwvMWI4MmJhMmItYWZmNy00NGU2LTlhZmUtYTU3YTVjNDIwMTRkXC9kZmZyYm9yLTAwZWY3YmUyLTg2MGEtNDBlOC05MTM2LTk3OTMyODlmZTY1YS5wbmciLCJ3aWR0aCI6Ijw9MzkwIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.gnPygDmDCjjUdvlmxVAZGAAMVPF0td97I7rbE97cIWI&sp=1772192332Tb65755c78e352665695e232ee094b941c8e125fee2496fde6448e4352f23c3a5');
    font-family: 'Comic Sans MS';
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}

.wrapper {
    width: 1000px;
    height: 500px;
    border: 5px outset #E00707;
    border-radius: 25px;
    padding: 10px;
    margin: 50px;
    overflow: auto;
    text-align: center;
    font-size: 20px;
    background-color: white;

}

.blurb h1 {
    text-transform: uppercase;
    color: #E00707;
    text-decoration-line: underline;
    font-style: italic;
    font-weight: bold;
    font-size: 40px;
    animation: rainbow 7s ease-in-out infinite;
    display: inline-block;
}

.smile {
    width: 30px;
}

@keyframes rainbow {
    0% {
        color: #E00707;
    }

    20% {
        color: orange;
    }

    40% {
        color: yellow;
    }

    60% {
        color: green;
    }

    80% {
        color: blue;
    }

    100% {
        color: #E00707;
    }
}

.blurb p {
    line-height: 1.2;
    font-size: 25px;
}

.scrollbox {
    width: 550px;
    height: 300px;
    border: 2px solid black;
    margin: 0 auto;
    float: right;
    overflow: auto;
    margin-right: 25px;
    padding: 5px;
    font-size: 20px;
    margin-top: 10px;
    border-radius: 15px;
}

em {
    font-style: italic;
    color: #E00707;
}