body {
    margin: 0%;
    overflow-y: hidden;
    overflow-x: hidden;

}

#myCanvas {
    border: 1px solid black;
    position: absolute;
    left:0px;
    top:0px;
}
.absolute {
    position: absolute;
}
#top {
    height: 50px;
    width: 100%;
}
#assemblyMenu, #inventory {
    position: absolute;
    width:92%;
    margin:4%;
    border: 1px solid black;
    background-color: rgb(99, 99, 99);
    box-shadow: 5px 10px #000000;
}
#recipeList {
    overflow-y: auto;
    height: 450px;
    width: 60%;
    border: 1px solid black;
    background-color: rgb(69, 69, 69);
}
.recipe{
    display: inline-block;
    width: 49%;
    margin-top:15px;
    margin-bottom:15px;
    line-height: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    border: 1px solid rgb(0, 0, 0);
    background-color: rgb(37, 37, 37);
}
.recipe p {
    color: rgb(102, 102, 102);
    margin:0px;
    line-height: 16px;
    padding: 0%;
}
.recipe h3 {
    color: rgb(134, 134, 134);
    margin-top:0px;
    margin-bottom:13px;
}
.tile {
    height: 64px;
    width: 64px;
    border: 1px solid black;
    background-color: rgb(69, 69, 69);
}
.tile:hover {
    background-color: rgb(82, 122, 148);
}
.recipe:hover {
    background-color: rgb(82, 122, 148);
}
.left {
    float: left;
}
.right {
    float: right;
}
#playerPic {
    margin:auto;
    height: 192px;
    width: 128px;
    background-color: rgb(0, 0, 0);
    color: rgb(102, 102, 102);
    border: 1px solid black;
} #playerColumnLeft {
    height: 50%;
    width: 20%;
    float: left;
} #playerColumnRight {
    height: 50%;
    width: 20%;
    float: right;
}
#descriptionColumn {
    height: 450px;
    background-color: rgb(37, 37, 37);
    color: rgb(102, 102, 102);
    width: 39.6;
    float: right;
    text-align: center;
    border: 1px solid black;
}
#playerColumn {
    height: 450px;
    background-color: rgb(37, 37, 37);
    color: rgb(102, 102, 102);
    width: 350px;
    float: right;
    text-align: center;
    border: 1px solid black;
}
#close {
    height: 50px;
    background-color: rgb(37, 37, 37);
    color: rgb(102, 102, 102);
    width: 50px;
    float: right;
    text-align: center;
    border: 1px solid black;
}
