@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;

@theme {
    --font-mono: "Space Mono", monospace;
}

body {
    background-image: url("/images/background-mobile.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    body {
        background-image: url("/images/background.svg");
        background-attachment: fixed;
    }
}