.animation-container {
    width: 930px;
    margin: 30px auto;
    height: 750px;
    background: #0d2b0d;
    border: 2px solid var(--border-color);
    position: relative;
}

/* Desk Clock */
.desk-clock {
    position: absolute;
    bottom: 225px;
    left: 60px;
    width: 100px;
    height: 40px;
    z-index: 0;
}

.digital-clock {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000, #001a00);
    border: 3px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 13, 0.4), inset 0 0 15px rgba(0, 255, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.time-display {
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--text-color), 0 0 20px var(--border-color);
    animation: flicker 0.1s infinite alternate;
}

.digit {
    display: inline-block;
    width: 16px;
    text-align: center;
}

.separator {
    animation: blink-colon 1s infinite;
    margin: 0 2px;
}

@keyframes blink-colon {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Desk */
.desk {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 870px;
    height: 200px;
    background: linear-gradient(180deg, #1a3d1a 0%, #0f2a0f 100%);
    border: 3px solid var(--border-color);
    box-shadow: inset 0 0 20px rgba(0, 255, 13, 0.15);
    border-radius: 5px 5px 0 0;
    z-index: 0;
}

/* Speaker */
.speaker {
    position: absolute;
    width: 60px;
    height: 90px;
    background: rgba(0, 0, 0, 0.575);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    transition: transform 1s ease;
    box-shadow: inset 0 2px 10px rgba(0, 255, 13, 0.1);
}

.speaker::before,
.speaker::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, #111 40%, #444 70%, #111 90%);
    box-shadow: 0 0 8px #000 inset;
    animation: pulse 0.6s infinite ease-in-out;
}

.speaker::before {
    top: 10px;
    width: 25px;
    height: 25px;
}

.speaker::after {
    bottom: 10px;
    width: 40px;
    height: 40px;
}

.speaker1 {
    bottom: 220px;
    left: 185px;
}

.speaker2 {
    bottom: 220px;
    right: 275px;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

.music-notes {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.note {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    animation: floatNote 4s linear infinite;
}

.note.delay1 {
    animation-delay: 1s;
}

.note.delay2 {
    animation-delay: 2s;
}

.note.delay3 {
    animation-delay: 3s;
}

@keyframes floatNote {
    0% {
        transform: translateX(0) translateY(50px) rotate(0deg);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-20px) translateY(-80px) rotate(-20deg);
        opacity: 0;
    }
}

/* Power Button */
.power-button {
    position: absolute;
    bottom: 0px;
    width: 15px;
    height: 7px;
    right: 6px;
    background-color: rgb(170, 0, 0);
    z-index: 10000;
    border: 1px black solid;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.2s ease-in-out;
}

.power-button:hover {
    background-color: red;
}

/* Monitor */
.monitor {
    position: absolute;
    bottom: 230px;
    left: 45%;
    transform: translateX(-50%);
    width: 320px;
    height: 200px;
    background: black;
    border: 4px solid var(--border-color);
    box-shadow: 0 0 40px rgba(0, 255, 13, 0.6), inset 0 0 15px rgba(0, 255, 13, 0.2);
    border-radius: 8px 8px 0 0;
}

.monitor::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: black;
    border: 2px solid var(--border-color);
    border-top: none;
}

/* LG logo */
#LG-logo {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    filter: brightness(0.8);
}

.screen {
    width: 96%;
    height: 90%;
    margin: 2%;
    background: #051505;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 255, 13, 0.5);
    border-radius: 4px;
    border: 1px solid black;
}

/* Code on screen */
@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.90;
    }
}

@keyframes screen-scroll {

    0%,
    100% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(-200%);
    }
}

.code-line {
    color: var(--text-color);
    font-size: 8px;
    font-family: monospace;
    text-shadow: 0 0 5px var(--text-color);
    padding: 3px 8px;
    animation: flicker 0.15s infinite alternate, screen-scroll 4s linear infinite;
}

.typing-line {
    animation: typewriter 15s steps(15) 5s infinite, flicker 0.15s infinite alternate, screen-scroll 4s linear infinite, typewriter-blink 1s step-end infinite;
    overflow: hidden;
    border-right: 0.13rem solid var(--text-color);
    width: 0;
    white-space: nowrap;
    display: inline-block;
}

@keyframes typewriter {

    0%,
    10% {
        width: 0;
    }

    10%,
    60% {
        width: 42%;
    }

    60%,
    80% {
        width: 42%;
    }

    80%,
    90% {
        width: 0;
    }

    90%,
    100% {
        width: 0;
    }
}

@keyframes typewriter-blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--text-color);
    }
}

/* Window */
.window {
    margin: 20px;
    background-color: rgba(66, 66, 66, 0.75);
    height: 110px;
    width: 190px;
    overflow: hidden;
    filter: brightness(0.9);
    box-shadow:
        inset 0px 0px 37px 3px rgba(0, 0, 0, 0.534),
        0px 0px 37px 3px rgba(51, 51, 51, 0.534);
    animation: flicker 0.15s infinite alternate;
    border: 1px rgb(75, 75, 75) groove;
}

.window::before {
    content: '− □ ×';
    position: absolute;
    width: 180px;
    height: 13px;
    padding: 0 5px;
    color: white;
    text-shadow: none;
    background-color: rgb(90, 90, 90);
    line-height: 0.9;
    text-align: right;
    filter: brightness(0.9);
    box-shadow: 0px 10px 37px 3px rgba(0, 0, 0, 0.452);
    z-index: 10;
}

/* Tray */
.tray {
    width: 100%;
    height: 18px;
    padding: 0 3px;
    color: rgb(81, 177, 255);
    text-shadow: none;
    background-color: rgba(87, 87, 87, 0.55);
    position: relative;
    transform: translateY(10px);
    animation: flicker 0.15s infinite alternate;
}

/* App Logos */
.app-logos {
    float: left;
    margin-left: 5px;
    width: 140px;
}

.app-logos-right {
    float: right;
    margin-right: 5px;
    padding: 2px 5px;
}

.app-logos span,
.app-logos-right span {
    cursor: pointer;
    padding-top: 2px;
    transition: background-color 0.2s, color 0.2s;
    font-size: 10px;
    border-radius: 3px;
}

.app-logos span {
    padding: 3px;
    margin-right: -6px;
}

/* Current window - tray */
#current-window {
    height: min-content;
    background-color: rgba(224, 224, 224, 0.7);
    border-bottom: 5px rgb(0, 81, 255) solid;
    padding-bottom: 0;
}

#current-window:hover {
    background-color: rgb(224, 224, 224);
}

/* Hover Effects */
.app-logos span:hover,
.app-logos-right span:hover,
#win-logo:hover {
    background-color: rgba(224, 224, 224, 0.4);
    color: white;
}

/* Windows Logo */
#win-logo {
    float: left;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: bolder;
}

/* Mug */
.mug {
    position: absolute;
    bottom: 220px;
    right: 205px;
    width: 40px;
    height: 45px;
    background: linear-gradient(180deg, #001a00, #000a00);
    border: 2px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    transition: transform 1s ease;
    box-shadow: inset 0 2px 10px rgba(0, 255, 13, 0.1);
}

.mug::before {
    content: '';
    position: absolute;
    right: -18px;
    top: 12px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-left: none;
    border-radius: 0 50% 50% 0;
    box-shadow: 0 0 8px rgba(0, 255, 13, 0.2);
}

.steam {
    position: absolute;
    top: -25px;
    left: 12px;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--text-color), transparent);
    opacity: 0.6;
    border-radius: 50%;
    transition: --tilt 1s ease-in-out;
    animation: steam-rise 2.5s ease-in-out infinite;
    --tilt: 0deg;
}

.mug:hover .steam {
    --tilt: 15deg;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) rotate(var(--tilt)) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-25px) rotate(var(--tilt)) scale(0.3);
        opacity: 0;
    }
}

.mug:hover {
    transform: rotate(-15deg) translate(-3px, -4px);
}

.mug:not(:hover) {
    animation: settle 0.5s cubic-bezier(0.45, 1.6, 0.55, 1) 0s;
}

@keyframes settle {
    0% {
        transform: rotate(-15deg) translate(-3px, -4px);
    }

    10% {
        transform: rotate(-10deg) translate(0, 0);
    }

    40% {
        transform: rotate(0deg) translate(2px, -2px);
    }

    60% {
        transform: rotate(5deg) translate(2px, -2px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* Keyboard */
.keyboard {
    position: absolute;
    bottom: 50px;
    left: 40%;
    transform: translateX(-50%);
    width: 360px;
    height: 125px;
    background: linear-gradient(145deg, #000a00, #000500);
    border: 3px solid var(--border-color);
    box-shadow: inset 0 2px 15px rgba(0, 255, 13, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 5px 10px 5px;
    z-index: 10;
}

.key-row {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.key {
    text-align: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #001a00, #000d00);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 255, 13, 0.2);
    position: relative;
}

.key::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 255, 13, 0.1), transparent);
    border-radius: 2px;
}

.key.active {
    background: linear-gradient(145deg, #003300, #001a00);
    box-shadow: 0 0 15px var(--text-color), 0 0 25px var(--border-color), inset 0 0 10px rgba(0, 255, 13, 0.3);
    transform: translateY(2px);
}

.key.wide {
    width: 48px;
}

.key.wider {
    width: 65px;
}

.key.wider2 {
    width: 31px;
}

.key.extra-wide {
    width: 100px;
}

/* Keypress animation typing "sudo apt update" */
@keyframes press {

    0%,
    100% {
        background: linear-gradient(145deg, #001a00, #000d00);
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 255, 13, 0.2);
    }

    50% {
        background: linear-gradient(145deg, #003300, #001a00);
        transform: translateY(2px);
        box-shadow: inset 0 0 10px rgba(0, 255, 13, 0.3);
    }
}

.key:has(> .label[data-char="S"]) {
    animation: press 0.2s ease-in-out 5s 1;
}

.key:has(> .label[data-char="U"]) {
    animation: press 0.2s ease-in-out 5.1s 1,
        press 0.2s ease-in-out 5.9s 1;
}

.key:has(> .label[data-char="D"]) {
    animation: press 0.2s ease-in-out 5.2s 1,
        press 0.2s ease-in-out 6.1s 1;
}

.key:has(> .label[data-char="O"]) {
    animation: press 0.2s ease-in-out 5.3s 1;
}

.key:has(> .label[data-char="Space"]) {
    animation: press 0.2s ease-in-out 5.4s 1,
        press 0.2s ease-in-out 5.8s 1;
}

.key:has(> .label[data-char="A"]) {
    animation: press 0.2s ease-in-out 5.5s 1,
        press 0.2s ease-in-out 6.2s 1;
}

.key:has(> .label[data-char="P"]) {
    animation: press 0.2s ease-in-out 5.6s 1,
        press 0.2s ease-in-out 6s 1;
}

.key:has(> .label[data-char="T"]) {
    animation: press 0.2s ease-in-out 5.7s 1,
        press 0.2s ease-in-out 6.3s 1;
}

.key:has(> .label[data-char="E"]) {
    animation: press 0.2s ease-in-out 6.4s 1;
}

.key:has(> .label[data-char="⬅"]) {
    animation: backspace-hold 15s linear 5s infinite;
}

@keyframes backspace-hold {

    0%,
    60% {
        background: linear-gradient(145deg, #001a00, #000d00);
        transform: translateY(0);
        box-shadow: 0 0 8px rgba(0, 255, 13, 0.2);
    }

    61%,
    80% {
        background: linear-gradient(145deg, #003300, #001a00);
        transform: translateY(2px);
        box-shadow: 0 0 25px var(--border-color),
            inset 0 0 10px rgba(0, 255, 13, 0.4);
    }

    81%,
    100% {
        background: linear-gradient(145deg, #001a00, #000d00);
        transform: translateY(0);
        box-shadow: 0 0 8px rgba(0, 255, 13, 0.2);
    }
}

/* Background effects */
.bg-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    font-family: monospace;
    color: var(--text-color);
    font-size: 11px;
    overflow: hidden;
    pointer-events: none;
}

.bg-line {
    position: absolute;
    white-space: nowrap;
    animation: bg-scroll 20s linear infinite;
    text-shadow: 0 0 5px var(--text-color);
}

.bg-line:first-child {
    top: 50px;
}

.bg-line:last-child {
    top: 250px;
    animation-delay: -10s;
}

@keyframes bg-scroll {
    from {
        transform: translateX(400%);
    }

    to {
        transform: translateX(-150%);
    }
}

/* Mouse */
.mouse {
    position: absolute;
    bottom: 90px;
    transform: rotate(-20deg);
    right: 240px;
    width: 50px;
    height: 70px;
    background: linear-gradient(145deg, #001a00, #000d00);
    border: 2px solid var(--border-color);
    border-radius: 20px 20px 25px 25px;
    box-shadow: 0 0 15px rgba(0, 255, 13, 0.3), inset 0 2px 10px rgba(0, 255, 13, 0.1);
    z-index: 10;
    animation: mouse-move 10s ease infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--border-color);
    opacity: 0.5;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 12px;
    background: var(--text-color);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--text-color);
    animation: mouse-scroll 4s ease-in-out infinite;
}

@keyframes mouse-scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes mouse-move {
    0% {
        transform: rotate(350deg) translateY(30px) rotate(-370deg);
    }

    100% {
        transform: rotate(-10deg) translateY(30px) rotate(-10deg);
    }
}

/* Mousepad */
.mousepad {
    background-color: #000;
    position: absolute;
    bottom: 30px;
    right: 170px;
    width: 650px;
    height: 180px;
    z-index: 9;
    border-radius: 10px;
    border: #0c790c 2px solid;
}

#eShark-logo {
    position: absolute;
    height: 15px;
    bottom: 10px;
    left: 10px;
    filter: brightness(0.9);
}

/* Desklamp */
.lampbase {
    bottom: 220px;
    right: 80px;
    position: absolute;
    height: 7px;
    width: 80px;
    background-color: #000;
    border: 2px solid #22ac22;
    border-radius: 2px;
}

.lampbase::after {
    filter: blur(1px);
    content: "";
    position: absolute;
    left: -33px;
    top: -180px;
    width: 90px;
    height: 170px;
    border: 4px solid #000;
    border-color: transparent transparent transparent rgb(0, 0, 0);
    border-radius: 0 0 0 99px;
    transform: rotate(180deg);
}

.lampbase::before {
    filter: blur(1px);
    content: "";
    position: absolute;
    left: -50px;
    top: -178px;
    width: 110px;
    height: 170px;
    border: 4px solid #000;
    border-color: transparent transparent rgb(0, 0, 0) transparent;
    border-radius: 0 0 0 100px;
    transform: rotate(180deg);
}

.lamp {
    bottom: 400px;
    right: 180px;
    position: absolute;
    height: 7px;
    width: 80px;
    background-color: #000;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    z-index: 10;
}

/* Light */
.lamp::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -30px;
    width: 140px;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(145, 255, 145, 0.308) 0%, rgba(0, 255, 0, 0) 80%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
    animation: lamp-flicker 5s infinite;
}

/* Blob */
.lamp::before {
    content: "";
    position: absolute;
    left: 150px;
    top: 164px;
    width: 25px;
    height: 14px;
    border-radius: 7px 7px 0 0;
    background-color: #000;
    border: 2px solid #187418;
    z-index: 100;
    border-bottom: none;
}

@keyframes lamp-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        opacity: 0.2;
    }
}

/* Shelf */
.shelf {
    position: absolute;
    top: 240px;
    left: 80px;
    height: 10px;
    width: 300px;
    background-color: #3d2d00;
    border: 2px solid #815112;
    border-radius: 2px;
    box-shadow: 0px 25px 30px #000000a4;
}

.shelf::before,
.shelf::after {
    content: "";
    position: absolute;
    top: 10px;
    height: 10px;
    width: 30px;
    background-color: #3d3200;
    border: 2px solid #815a12;
    border-top: none;
    filter: brightness(0.7);
    box-shadow: 0px 25px 30px #000000a4;
}

.shelf::before {
    left: 30px;
}

.shelf::after {
    right: 30px;
}

/* Watering Can & Water */
.watering-can-wrapper {
    position: absolute;
    left: 90px;
    top: 90px;
    width: 70px;
    height: 55px;
    z-index: 100;
}

.watering-can {
    position: absolute;
    width: 70px;
    height: 55px;
    background: rgb(187, 30, 103);
    border-radius: 30px 30px 10px 10px;
    transform-origin: right center;
    transform: rotate(0deg) scaleX(-1);
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3),
        inset 0 -10px 20px rgb(82, 1, 78);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    animation: pourCan 5s ease-in-out infinite;
    opacity: 0;
}

.watering-can::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20px;
    width: 30px;
    height: 15px;
    background: rgb(187, 30, 103);
    border-radius: 5px;
    transform: rotate(10deg);
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3),
        inset 0 0 10px black;
}

.watering-can::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -15px;
    width: 70px;
    height: 60px;
    border: 5px solid rgb(190, 22, 100);
    border-right: none;
    border-bottom: none;
    border-radius: 50%;
    box-sizing: border-box;
    transform: rotate(-5deg);
}

.drops {
    position: absolute;
    top: 35px;
    left: 55px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: dropCycle 5s linear infinite;
}

.drops .drop {
    position: absolute;
    width: 6px;
    height: 10px;
    background: #66ccff;
    border-radius: 50%;
    opacity: 0;
    animation: water 1s linear infinite;
}

.drops .drop:nth-child(1) {
    animation-delay: 0.1s;
}

.drops .drop:nth-child(2) {
    animation-delay: 0.2s;
}

.drops .drop:nth-child(3) {
    animation-delay: 0.4s;
}

.drops .drop:nth-child(4) {
    animation-delay: 0.6s;
}

.drops .drop:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes pourCan {

    0%,
    60% {
        opacity: 0;
        transform: rotate(0deg) scaleX(-1);
    }

    70%,
    90% {
        opacity: 1;
        transform: rotate(-25deg) scaleX(-1);
    }

    100% {
        opacity: 0;
        transform: rotate(0deg) scaleX(-1);
    }
}

@keyframes dropCycle {

    0%,
    60% {
        opacity: 0;
    }

    70%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes water {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }

    20% {
        transform: translateY(10px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(80px) scale(0.7);
        opacity: 0;
    }
}

/* Sunflower on watering can */
.sunflower {
    position: relative;
    margin: 10px auto;
    height: 10px;
    width: 10px;
    filter: brightness(0.9);
}

.sunflower-center {
    position: relative;
    background-color: brown;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    border: 1px solid black;
    z-index: 2;
    transform: translate(30px, 20px);
}

.petal {
    border: 1px solid black;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 13px;
    background-color: gold;
    border-radius: 50% 50% 0 0;
    transform-origin: center bottom;
    z-index: 1;
}

.petal:nth-child(1) {
    transform: translate(-50%, -100%) rotate(0deg);
}

.petal:nth-child(2) {
    transform: translate(-50%, -100%) rotate(60deg);
}

.petal:nth-child(3) {
    transform: translate(-50%, -100%) rotate(120deg);
}

.petal:nth-child(4) {
    transform: translate(-50%, -100%) rotate(180deg);
}

.petal:nth-child(5) {
    transform: translate(-50%, -100%) rotate(240deg);
}

.petal:nth-child(6) {
    transform: translate(-50%, -100%) rotate(300deg);
}

/* Plant */
.plant {
    position: absolute;
    top: 130px;
    left: 130px;
    width: 10px;
    height: 60px;
    background-color: #037d12;
    border-radius: 10px;
    transform-origin: bottom center;
    z-index: 5;
    animation: sway 4s ease-in-out infinite alternate;
}

.plant::before {
    content: "";
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 20px;
    height: 50px;
    background-color: #05a61a;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-35deg);
    box-shadow: inset -3px -3px 5px #003f07;
}

.plant::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 20px;
    height: 50px;
    background-color: #05a61a;
    border-radius: 50% 50% 50% 0;
    transform: rotate(35deg);
    box-shadow: inset 3px -3px 5px #003f07;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.plant-pot {
    position: absolute;
    top: 175px;
    left: 100px;
    height: 60px;
    width: 70px;
    background-color: #3b230c;
    border: 3px solid #663c15;
    border-radius: 2px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    transform: rotate(180deg);
    z-index: 100;
}

.plant-rim {
    position: absolute;
    top: 175px;
    left: 90px;
    height: 18px;
    width: 90px;
    background-color: #502f11;
    border: 1px solid #502f11;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0px 5px 10px #00000034;
    z-index: 101;
}

/* Books on shelf */
.book {
    position: absolute;
    width: 20px;
    height: 80px;
    border-radius: 2px;
    filter: grayscale(0.5);
    perspective: 800px;
    transform-origin: left center;
}

.book::after {
    position: absolute;
    content: "";
    bottom: 75%;
    background: rgb(228, 228, 228);
    width: 20px;
    height: 5px;
}

.book-cover,
.book-pages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    backface-visibility: hidden;
}

.book-cover {
    background-color: #4495ff;
    border: 1px solid #0055cc;
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 1s ease;
}

.book-pages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fcf0c2;
    z-index: -1;
    pointer-events: none;
}

/* Scribble lines */
.book-pages::before,
.book-pages::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    height: 1px;
    background: black;
    top: 20%;
    box-shadow:
        0 5px black,
        0 10px black,
        0 15px black,
        0 20px black,
        0 25px black,
        0 30px black,
        0 35px black,
        0 40px black,
        0 45px black,
        0 50px black;
    opacity: 0.3;
}


.book1-hitbox:hover .book-cover,
.book2-hitbox:hover .book-cover,
.book3-hitbox:hover .book-cover,
.book4-hitbox:hover .book-cover {
    transform: rotateY(-130deg);
}

.book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ff8800;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #000000, 0 0 20px #000000;
}

/* book1 */
.book1 {
    right: -20px;
    top: 30px;
    transform: rotate(-90deg);
    transition: transform 2s ease, right 1s ease, top 1s ease, width 1s ease;
    z-index: 10;
    transform-origin: bottom left;
}

.book1-hitbox:hover .book1,
.book2-hitbox:hover .book2,
.book3-hitbox:hover .book3 {
    right: 0px;
    transform: rotate(0deg);
    top: 0px;
    width: 100px;
    z-index: 1000;
}

.book1-hitbox {
    position: absolute;
    /*background-color: red;*/
    height: 110px;
    width: 80px;
    top: 127px;
    left: 200px;
}

/* book2 */
.book2 {
    top: 97px;
    left: 0px;
    transition: right 1s ease, top 1s ease, width 1s ease;
}

.book2-hitbox {
    position: absolute;
    /*background-color: rgb(229, 255, 0);*/
    height: 180px;
    width: 20px;
    top: 60px;
    left: 283px;
}

/* book3 */
.book3 {
    top: 97px;
    left: 0px;
    transition: right 1s ease, top 1s ease, width 1s ease;
}

.book3-hitbox {
    position: absolute;
    /*background-color: rgb(0, 238, 255);*/
    height: 180px;
    width: 20px;
    top: 60px;
    left: 306px;
}

/* book4 */
.book4 {
    top: 98px;
    left: 6px;
    transform: rotate(-10deg);
    transition: transform 1s ease, left 1s ease, top 1s ease, width 1s ease;
}

.book4-hitbox {
    position: absolute;
    /*background-color: rgb(0, 255, 13);*/
    height: 180px;
    width: 35px;
    top: 60px;
    left: 330px;
}

.book4-hitbox:hover .book4 {
    left: 0px;
    transform: rotate(0deg);
    top: 0px;
    width: 100px;
}

/* Pictures & Frames & Images */
.pic {
    border: 2px solid #05a61a;
    background-color: #000;
    position: absolute;
}

.frame {
    position: relative;
    border: 1px solid #05a61a;
    margin: auto;
    margin-top: 9px;
    background:
        radial-gradient(circle at top left, #05a61a55, transparent 60%),
        radial-gradient(circle at bottom right, #00ff9955, transparent 60%);
    box-shadow:
        inset 0 0 15px #05a61a44,
        0 0 20px #05a61a33;
    z-index: 100;
}

#img1,
#img2,
#img3,
#img4,
#img5,
#img6 {
    filter: brightness(0.5) grayscale(0.6);
}

/* Top Big */
.pic1 {
    right: 145px;
    height: 110px;
    width: 140px;
    top: 35px;
}

.frame1,
#img1 {
    height: 90px;
    width: 120px;
}

#img1 {
    transform: translate(10px, -90px);
    position: relative;
    z-index: 1;
}

/* Top Right Medium */
.pic2 {
    right: 35px;
    height: 100px;
    width: 100px;
    top: 35px;
}

.frame2,
#img2 {
    height: 80px;
    width: 80px;
}

#img2 {
    transform: translate(10px, -80px);
    position: relative;
    z-index: 1;
}

/* Top Tall */
.pic3 {
    right: 395px;
    height: 120px;
    width: 80px;
    top: 35px;
}

.frame3,
#img3 {
    height: 100px;
    width: 60px;
}

#img3 {
    transform: translate(10px, -100px);
    position: relative;
    z-index: 1;
}

/* Top Left Medium */
.pic4 {
    right: 295px;
    height: 70px;
    width: 90px;
    top: 35px;
}

.frame4,
#img4 {
    height: 50px;
    width: 70px;
}

#img4 {
    transform: translate(10px, -50px);
    position: relative;
    z-index: 1;
}

/* Bottom Tall */
.pic5 {
    right: 35px;
    height: 110px;
    width: 80px;
    top: 145px;
}

.frame5,
#img5 {
    height: 90px;
    width: 60px;
}

#img5 {
    transform: translate(10px, -90px);
    position: relative;
    z-index: 1;
}

/* Bottom Wide */
.pic6 {
    right: 125px;
    height: 80px;
    width: 190px;
    top: 155px;
}

.frame6,
#img6 {
    height: 60px;
    width: 170px;
}

#img6 {
    transform: translate(10px, -60px);
    position: relative;
    z-index: 1;
}