:root {
    --black: #190400;
    --white: #f2f2f2;
    --green: #a2b20a;
    --orange: #f4964e;
    --pink: #faa3ab;
}

* {
    box-sizing: border-box;
    image-rendering: pixelated;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--white) var(--black);
    transition: 0.4s;
    margin: 0;
    padding: 0;
}

html {
    background: var(--black);
    color: var(--white);
    font-family: "Silkscreen", sans-serif;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    color: var(--orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Press Start 2P", system-ui;
}

.title {
    float: right;
    position: relative;
    top: -24px;
    margin-right: 12px;
}

.border {
    border-image-slice: 4;
    border-image-width: 12px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-source: url("/adventure/assets/border.png");
    border-style: solid;
    padding: 24px 32px;
}

.map {
    background-image: url(/adventure/assets/maps.png);
    background-repeat: no-repeat;
    background-size: 1728px;
    background-position: -576px -1155px;
    height: 576px;
    width: 576px;
    margin: auto;
    position: relative;
    top: 48px;
    border-image-outset: 12px;
}

.home {
    font-size: 24px;
    margin: 12px 0 0 12px;
}

.orange {
    color: var(--orange);
}

.interact:hover {
    filter: drop-shadow(0 0 0.5rem var(--white)) brightness(1.25);
    cursor: pointer;
    
}

.mushrooms {
    background-image: url(/adventure/assets/interactables.png);
    background-repeat: no-repeat;
    background-size: 256px;
    background-position: -0 -128px;
    height: 64px;
    width: 64px;
    position: relative;
    top: 294px;
    left: 352px;
}

.temple_outside_entrance {
    background-image: url(/adventure/assets/interactables.png);
    background-repeat: no-repeat;
    background-size: 256px;
    background-position: -192px -510px;
    height: 64px;
    width: 64px;
    position: relative;
    top: -30px;
    left: 224px;
}

.beach_arrow {
    background-image: url(/adventure/assets/interactables.png);
    background-repeat: no-repeat;
    background-size: 256px;
    background-position: -56px -262px;
    height: 64px;
    width: 64px;
    position: relative;
    top: 360px;
    left: 310px;
}

.home_arrow {
    background-image: url(/adventure/assets/interactables.png);
    background-repeat: no-repeat;
    background-size: 256px;
    background-position: 6px -260px;
    height: 64px;
    width: 64px;
    position: relative;
    top: 48px;
    left: -40px;
}
