body {
    min-height: 100vh;
    background: url("Backgrounds/bg-4.gif");
    color: #727070;
    letter-spacing: 1px;
}
.title {
    -webkit-text-stroke: 10px #ffffff;
    paint-order: stroke fill;
    color: black;
    font-family: "Conthrax", Arial, Helvetica, sans-serif;
    margin-left: 20px;
    width: 100%;
    font-size: clamp(3rem, 10vw, 5rem);
}

.tv-container {
    position: relative;
    width: 400px; /* Adjust to match your PNG size */
}

.tv-frame {
    width: 100%;
    position: relative;
    z-index: 2; /* Keeps the frame on top */
    pointer-events: none; /* Allows you to click the video through the image */
}

.video-wrapper {
    position: absolute;
    /* Adjust these % values to align the video with the TV screen hole */
    top: 10%;
    left: 8%;
    width: 87%;
    height: 63%;
    z-index: 1; /* Puts the video behind the frame */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .title {
        text-align: center;
        margin-left: 0;
    }
}