/* We need to import all the JetBrains Mono weights from the fonts folder from woff2 format */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('fonts/JetBrainsMono-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* ...and we need the Dynamussy.ttf font file, with a slightly increased character spacing */
/*
@font-face {
    font-family: 'Dynamussy';
    src: url('fonts/Dynamussy.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}*/

@font-face {
    font-family: 'Dynamussy';
    src: url('fonts/Volkswagen-Heavy.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #000000;
    color: white;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
}

body::before {
    content: "";
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(16px);
    /* Adjust the blur radius as needed */
    z-index: -1;
}

.node-title {
    font-family: 'Dynamussy', sans-serif;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: 0.05em;
    padding: 0px;
    margin: 0;
    margin-bottom: 0.5em;
    vertical-align: middle;
}

u {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.node {
    text-align: center;
    background-color: #242424;
    padding: 20px;
    border-radius: 16px;
    margin: 20px;
    max-width: 40em;
    position: absolute;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffffff;
}

.node-description {
    text-align: left;
    max-width: 20em;
    background-color: rgb(73, 73, 73);
    padding: 10px;
    border-radius: 3px;
}

br {
    display: block;
    margin: 5px 0;
 }

.node-subtext {
    font-size: 0.8em;
    color: rgb(132, 132, 132);
    margin: 0;
    padding: 0;
    text-align: right;
}

img {
    border-radius: 3px;
    max-width: 20em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.node-icon {
    padding-right: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
    width: 32px;
    box-shadow: 0px 0px 0px;
    border-radius: 0;
}

.map {
    transform-origin: top left;
    transform: scale(100%);
    width: 100vw;
    height: 100vh;
    background-repeat: repeat;
}

.map-background {
    transform-origin: top left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/ScratchyGlass.png');
    background-repeat: repeat;
    filter: opacity(0.7);

}

.arrow {
    width: 500px;
    height: 500px;
    position: absolute;
}

a {
    color: rgb(107, 107, 107);
}

a:hover {
    color: rgb(255, 255, 255);
}

a:visited {
    color: rgb(107, 107, 107);
}