:root {
    --cat-rosewater: #f5e0dc;
    --cat-flamingo: #f2cdcd;
    --cat-pink: #f5c2e7;
    --cat-mauve: #cba6f7;
    --cat-red: #f38ba8;
    --cat-maroon: #eba0ac;
    --cat-peach: #fab387;
    --cat-yellow: #f9e2af;
    --cat-green: #a6e3a1;
    --cat-teal: #94e2d5;
    --cat-sky: #89dceb;
    --cat-sapphire: #74c7ec;
    --cat-blue: #89b4fa;
    --cat-lavender: #b4befe;
    --cat-text: #cdd6f4;
    --cat-subtext1: #bac2de;
    --cat-subtext0: #a6adc8;
    --cat-overlay2: #9399b8;
    --cat-overlay1: #7f849c;
    --cat-overlay0: #6c7086;
    --cat-surface2: #585b70;
    --cat-surface1: #45475a;
    --cat-surface0: #313244;
    --cat-base: #1e1e2e;
    --cat-mantle: #181825;
    --cat-crust: #11111b;
}

@font-face {
    font-family: 'MysteryQuest-Regular';
    src: url('fonts/MysteryQuest-Regular.ttf') format('woff2');
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--cat-base);
    color: var(--cat-text);
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100vw;
    min-height: 100vh;
}

header {
    min-height: 10vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90vw;
    font-size: 6vw;
    font-family: 'MysteryQuest-Regular', cursive;
    color: var(--cat-text);
}

main p {
    color: transparent;
    background: white;
    background-clip: text;
    text-shadow:
        0 0 5px var(--cat-subtext0),
        0 0 21px var(--cat-subtext0),
        0 0 50px var(--cat-subtext0);
}



footer {
    color: var(--color-text);
    font-size: 1rem;
    inset: auto 0px 0px;
    padding: 1rem 1.5rem;
    text-align: center;
    width: 100%;
    font-family: sans-serif;
    background-color: var(--color-background);
}

a {
    color: var(--cat-sky);
}

a:hover {
    color: var(--cat-rosewater);
}