.room {
    display: flex;
    justify-content: center;
}

.room img {
    object-fit: none;
    height: var(--bedroom-height);
}

.room .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--bedroom-height);
    background: url(../assets/bedroom_2.png);
    filter: blur(10px);
    z-index: -1;
}

.lavalamp {
    position: absolute;
    top: 33%;
    left: 50%;
    transform-origin: top left;
    transform: scale(.5);
    width: fit-content;
    box-shadow:
        inset 0 0 10px #fcd59e,
        inset 0 0 41px 10px var(--lavalamp-color-dark);
    background-color: rgba(var(--lavalamp-color-r), var(--lavalamp-color-g), var(--lavalamp-color-b), 0.2);
    overflow: visible;
}

.lavalamp .top {
    content: '';
    position: absolute;
    left: -5px;
    top: -19px;
    transform: perspective(10px) rotateX(-2deg);
    width: calc(100% + 10px);
    height: 20px;
    box-shadow: 0 0 10px #000;
    background: linear-gradient(#2c2c2c, #646464);
}

.lavalamp .bottom {
    content: '';
    position: absolute;
    left: -10px;
    bottom: -35px;
    width: calc(100% + 20px);
    height: 40px;
    background: linear-gradient(#646464, #2c2c2c);
    box-shadow: 0 0 10px #000;
    transform: perspective(10px) rotateX(2deg);
}