/* VERSION FOUR */

body {
    background-image: url('../projectFiveJukebox/img/televisionFull.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 150px; /* Adjusted margin-right to its original position */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 20px; /* Adjusted margin-right to its original position */
}

.tv-frame {
    width: 350px;
    height: 300px;
    border: 20px solid #8B4513;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 25px;

    animation: blink-shadow 2s infinite;
}

@keyframes blink-shadow {
    0% {
        box-shadow: 0 0 40px yellow;
    }
    50% {
        box-shadow: none;
    }
    100% {
        box-shadow: 0 0 40px rgb(92, 152, 230);
    }
}

/* Add the small gray shadow on the inside of the brown border */
.tv-frame::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 20px solid transparent;
    border-radius: 25px;
    box-shadow: 0 0 10px gray inset;
}

#tv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.circle-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #808080;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #FFFFFF;
    color: #fff;
    font-weight: bold;
}
