@font-face {
    font-family: 'bangers';
    src: url('../fonts/bangers.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

h1, h2, .h1, .h2,
#hero h1, #hero h2 {
    font-family: 'bangers', sans-serif;
}

.white-text-outline{
    text-shadow: -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px 2px 0 #FFF, 0px 4px 64px black ;
}

.black-text-outline{
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 0px 4px 64px black ;
}

.comic-frame{
    border: 6px solid black;
    box-shadow: 8px 8px 0 black;
}

.speech-bubble {
    background: var(--white);
    border: 4px solid black;
    position: relative;
    box-shadow: 5px 5px 0 black;
    margin-bottom: 2rem;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    border-top: 20px solid black;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 0px solid transparent;
    border-top: 16px solid white;
}