* {box-sizing: border-box;}
html, body, #app {
    height: 100%;
}
body {
    margin: 0;
    font-family: Lato, sans-serif;
    background: #ccc;
}

button {
    -webkit-appearance: none;
    font-family: inherit;
    font-size: inherit;
    border: 0;
    background: rgba(0, 0, 0, .5);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.hud {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.hud * {
    pointer-events: all;
}
.icon {
    display: inline-block;
    width: 1em;
}
.top-left {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 32px;
}
.currency-display {
    background: rgba(255, 255, 255, .5);
    display: inline-block;
    padding: 10px 20px;
}

.right-full {
    position: absolute;
    height: 100%;
    width: 700px;
    right: 0;
    padding: 20px;
}
.right-full>.container {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
}

.side-menu {
    font-size: 24px;
}
.shop-view, .inventory-view {
    padding: 20px;
}
.shop-item {
    margin: 10px 0;
}
.item {
    margin: 10px 0;
}

.farm-grid {
    font-size: 150px;
    width: 10em;
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
}

.farm-patch {
    display: flex;
    width: 1em;
    height: 1em;
    background: #825647;
    margin: 5px;
    justify-content: center;
    align-items: center;
}
.plant {
    background: green;
}