html, body {
    height: 100%;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Source Serif Pro', serif;
    height: 100%;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0em 0em 0.2em rgb(50 50 50 / 30%);
}

.angry-background {
    background: rgb(238,207,174);
    background: radial-gradient(circle, rgb(238, 194, 174) 0%, rgba(233,148,148,1) 100%);
}

.angry {
    color: indianred;
}

.happy-background {
    background: radial-gradient(circle, rgba(174,227,238,1) 0%, rgba(148,185,233,1) 100%);
}

.happy {
    color: white;
}

h1 {
    font-size: 5em;
    font-weight: 600;
    margin: 0;
}

.sub-header {
    color: rgb(47, 79, 79);
}

h2 {
    font-weight: 300;
    font-size: 2em;
    margin: 0;
}

span.number {
    font-weight: 600;
    /* text-decoration: underline solid rgb(47, 79, 79, .25); */
}