:root {
    --towns-width: 500px;
    --border-color: #cacaca;
    --panel-color: white;
}

@font-face {
    font-family: 'Pokemon';
    src: url('../fonts/Pokemon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    user-select: none;
    font-family: 'Pokemon', sans-serif;
    font-size: 8px;
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
    font-smooth: never;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: rgb(220, 220, 220);
}

.container {
    display: flex;
    height: 100vh;
}

#gameCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: transparent;
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    max-height: 8px;
}

::-webkit-scrollbar-track-piece {
    background: linear-gradient(to right, transparent 40%, #757575 40%, #757575 60%, transparent 60%);
}

::-webkit-scrollbar-thumb {
    background: url('../img/thumb.png');
    background-size: 100% 100%;
    border-radius: 2px;
}

::-webkit-scrollbar-button:single-button:vertical:decrement {
    background: url('../img/sup.png') no-repeat center;
    background-size: contain;
    height: 8px;
}

::-webkit-scrollbar-button:single-button:vertical:increment {
    background: url('../img/sdown.png') no-repeat center;
    background-size: contain;
    height: 8px;
}

::-webkit-scrollbar-horizontal {
    height: 12px;
}

::-webkit-scrollbar-vertical {
    width: 12px;
}