
#room {
    position: relative;
    width: 100%;
    height: 100vh;
}

#ceiling {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 8%;
    background-color: #B5A8A0;
    background-image: url("../img/NoiseSubtle.png");
    box-shadow: inset 0px -5px 3px -3px rgba(50,50,50,0.05);
}

#backWall {
    position: absolute;
    top: 8%;
    right: 0;
    bottom: calc(18% + 10px);
    left: 0;
    background-color: #CBC2BD;
    background-image: url("../img/NoiseSubtle.png"), radial-gradient(circle, rgba(223,215,212,1) 0%, rgba(181,170,166,1) 100%);
    background-position: 20vw center;
    box-shadow: inset 0px 5px 3px -3px rgba(50,50,50,0.05);
}

#skirtingBoard {
    position: absolute;
    right: 0;
    bottom: 18%;
    left: 0;
    height: 10px;
    background-color: #E1DAD4;
    background-image: url("../img/NoiseSubtle.png");
    box-shadow: inset 0px -5px 3px -3px rgba(0,0,0,0.1);
}

#floor {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 18%;
    overflow: hidden;
    background-image: url("../img/Floor.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#floorShadow {
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(40,40,40, 0.3) 0%, rgba(255,255,255, 0.2) 30%,rgba(255,255,255, 0) 31%, rgba(255,255,255, 0) 100%);
    box-shadow: inset 0px 5px 3px -3px rgba(0,0,0,0.3);
    opacity: 0.3;
}
