body {
    margin: 0 auto;
    font-family: 'Cambay', sans-serif;
    background: rgb(39, 21, 14);
    color: white;
    font-size: 16px;
}
#container {
    width: 800px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    margin: 0 auto;
}
#title {
    flex-direction: column;
    color: rgb(238, 173, 88);
}
#title img {
    height: 50px;
}
h1 {
    font-family: 'Sigmar One', cursive;
    display: inline;
}
#title p {
    display: inline;
}
a {
    color: rgb(238, 173, 88);
    text-decoration: none;
}
a:hover {
    color: rgb(200, 255, 0);
}
#top-menu {
    height: 75px;
    display: flex;
    background-color: rgb(209, 121, 38);
    border-radius: 10px 10px 0 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#game-bg{
    background-color: rgb(125, 205, 236);
    height: 280px;
}
#game {
    height: 280px;
    width: 800px;
    background: url(../img/grass.png);
    background-repeat: repeat-x;
    background-size: 115px 301px;
}
#menubar {
    height: 75px;
    background-color: rgb(209, 121, 38);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#inventory {
    display: flex;
    flex-direction: row;
}
#inventory div {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    width: 100px;
    text-align: center;
    margin: 0 10px;
    background-color: rgb(197, 104, 17);
    height: 70px;
}
#inventory div:hover {
    border: 1px solid rgb(200, 255, 0);
}
#inventory img {
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   IE8+          
    height: 40px;
    width: 40px;
}
button {
    font-family: 'Cambay', sans-serif;
    border-radius: 10px;
    height: 70px;
    background: white;
    width: 140px;
    font-size: 16px;
    /* to fix user being able to copy/paste button text*/
    -webkit-touch-callout: none;
    -webkit-user-select: nonke;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#left {
    width: 70px;
}
#right {
    width: 70px;
}
#instructions {
    border-radius: 10px;
    background: white;
    color: black;
    padding: 10px 50px;
    margin: 10px;
}
#popup {
    visibility: hidden;
    position: absolute;
    width: 35%;
    top: 150px;
    text-align: center;
    left: 30%;
    border-radius: 10px;
    background: white;
    color: black;
    padding: 10px;
}
#instructions a { 
    color: sienna;
}
#instructions a:hover {
   color: rgb(144, 180, 15);
} 
