body {
    font-family: "Bad Comic", sans-serif;
    text-align: center;
    background-color: var(--bg-color);
    color: var(--subtitle-color);
}

* {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bad Comic", sans-serif;
    color: var(--title-color);
    animation: squiggly-anim 0.2s infinite;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

p {
    font-size: 25px;
}

html {
    scroll-behavior: smooth;
}