html::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    background-color: rgb(224, 205, 181);
    padding: 0px;
    margin: 0px;
}

#top_bar {
    width: 100vw;
    padding: 0.3vh;
    background-color: #666;
    border-bottom: solid black 3px;
    position: fixed;
    top: 0px;
    left: 0px;
}

#game_area {
    display: block;
    width: 3000px;
    height: 3000px;
}

.building{
    position: absolute;
    background-color: rgb(173, 150, 121);
    border: solid black 3px;
    cursor: pointer;
}

#village_center {
    width: 100px;
    height: 100px;
    top: 1500px;
    left: 1500px;
}