:root {
    --site-width: 900px;
    --page-gutter: 38px;
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 40px;
    --content-padding: 24px;
}

@font-face {
    font-family: "DotGothic16";
    src: url("https://ghost-guacho.neocities.org/fonts/DotGothic16-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Doto";
    src: url("https://ghost-guacho.neocities.org/fonts/Doto-VariableFont_ROND,wght.ttf") format("truetype");
}

body {
    background-image: url("https://ghost-guacho.neocities.org/images/ghost-background-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -2;
    pointer-events: none;
}

a {
    color: #8ab4f8;
    text-decoration: none;
}

a:hover {
    color: #ff9d9d;
    text-decoration: underline;
}