@font-face {
        font-family: OldeTome;
        src: url("../fonts/OldeTome.ttf");
}

:root {
    /* border */
    --border:1px dashed rgb(70, 70, 70);;
    --border-radius: 5px;
    --padding: 20px;
    --gap: 10px;

    /* text  */
    --text-color: rgb(245, 245, 245);
    --link-color: #cc2d2d;
    --link-hover-color: #e98492;
    --font-text: basiic;
    --font-header: OldeTome;

    /* background */
    --background-color: url("../images/backgrounds/hall-ghosts-light-transparent.png"), linear-gradient(180deg, #0f0018 0%, #210037 15%, #570967 100%);
    --main-box-color: rgba(19, 19, 19, 0.9);
}
body{
    cursor: url("../images/bat-cursor.cur"), default;
    line-height: 1.2;
}

a:hover,
a:focus {
    color: #e98492;
    text-decoration: none;
    font-style: italic;
}