#main_container {
    position: relative;
    width: 1280px;
    height: 720px;

}

#background {
    position: absolute;
    z-index: 1;
}

#hand {
    position: absolute;
    left: 475px;
    top: 240px;
    transition-duration: 250ms;
    z-index: 100;
}

#draftbeer {
    left: 250px;
    top: 67px;
    position: absolute;
    z-index: 90;
    transition-duration: 250ms;
}

#me {
    left: 226px;
    top: 282px;
    scale: 1;
    z-index: 12;
    position: absolute;
}

#lights {
    position: absolute;
    z-index: 10;
    opacity: 25%;
}

#lightfixtures {
    position: absolute;
    z-index: 11;
}

#guypainting {
    left: 1036px;
    top: 164px;
    transition-duration: 250ms;
}

#guyhighlight {
    left: 1036px;
    top: 164px;
}

#latestbeer {
    left: 1090px;
    top: 260px;
}

#hand:hover {
    transition-duration: 150ms;
    scale: 1.1;
    filter: drop-shadow(0px 0px 30px red);
    cursor: pointer;
}

#hand:hover + #latestbeer {
    opacity: 1;
}

#allbeer {
    left: 900px;
    top: 75px;
}

#draftbeer:hover + #allbeer {
    opacity: 1;
}

#draftbeer:hover {
    filter: drop-shadow(0px 0px 40px red);
    cursor: pointer;
}

body {
    margin: 0;
}
