: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;
}

.background {
    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;
}

.container {
    background: var(--black);
    text-align: center;
    width: 400px;
    margin: auto;
    position: relative;
    top: 144px;
}

.container p {
    text-align: center;
    margin: 12px 8px;
}

.enterbutton a {
    font-size: 32px;
    margin: auto;
}

.home {
    font-size:24px;
    margin:12px 0 0 12px;
}

.orange {
    color: var(--orange);
}
