body {
    background-color: rgb(0, 0, 0);
    min-height: 100vh;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.returnLink {
    width: fit-content;
    position: absolute;
    left: 5px;
    top: 5px;
    padding: 10px;
}

.returnLink a {
    color: #ffffff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

#wobble {
    font-size: 80px;
    color: antiquewhite;
    text-align: center;
    font-family: "IBM Plex Mono";
}

.tvWrapper {
    width: 90vw;             /* responsive width */
    max-width: 1600px;       /* cap max width */
    aspect-ratio: 1600/790;  /* match TV image ratio */
    position: relative;
}

.tvWrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 3;
    pointer-events: none; /* clicks pass through */
}

.videoOverlay {
    position: absolute;
    top: 18.6%;       /* 147px / 790px */
    left: 37%;        /* 640px / 1600px */
    width: 28.75%;    /* 460px / 1600px */
    height: 40.5%;    /* 320px / 790px */
    pointer-events: none;
    z-index: 2;
}

.ytPlaylist {
    position: absolute;
    top: 18.6%;
    left: 44%;
    width: 28.75%;
    height: 40.5%;
    z-index: 1;
}

.ytPlaylist iframe {
    width: 100%;
    height: 100%;
}


