* {
    box-sizing: border-box;
}

body {
    margin: 20px;
    background: url(room.png) no-repeat center fixed;
    background-size: cover;
}

.game {
    position: fixed;
    bottom: 170px;
    right: 800px;
    opacity: 0;
}

.chip {
    position: fixed;
    bottom: 180px;
    right: 900px;
    opacity: 0;
}

.money {
    position: fixed;
    bottom: 200px;
    right: 550px;
    opacity: 0;
}

.hammy {
    position: fixed;
    bottom: 200px;
    right: 1000px;
    opacity: 0;
}

.gum {
    position: fixed;
    bottom: 150px;
    right: 1075px;
    opacity: 0;
}

.remote {
    position: fixed;
    bottom: 150px;
    right: 1000px;
    opacity: 0;
}


button {
    padding: 10px;
    border: 1px solid;
    background-color: antiquewhite;
    border-radius: 5px;
    transition: background-color 0.5s;
    position: fixed;
}

button:hover {
    background-color: darkkhaki;
}