body {
    cursor: crosshair;
    background: black;
    color: white;
}
.dialog {
     position: absolute; 

}
.dialog:hover {
}

.talk {
    font-weight: bold;
    position: absolute;
}
.answer {
    cursor: pointer;
    font-weight: bold;
    left:20px;
    padding: 10px;
}
.answer:hover {
    background: darkviolet;
}
#info {
    color: darkviolet;
    text-align: center;
    height: 20px;
}
#actions {
    position: relative;
    width: 50%;
    float: left;
}
.action {
    cursor: pointer;
    float: left;
    text-align: center;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
    color: darkviolet;
    font-size: 26pt;
}
.selected {
     color: black;
    background: darkviolet;  
}
.action:hover {
    color: black;
    background: darkviolet;
}
#inventory {
    width: 50%;
    float: right;
}
.item {
    cursor: pointer;
    float: left;
    width: 25%;
    margin-top: 20px;
    margin-bottom: 20px;
}
.item img {
    width: 100%
}