/*on desktop screen above 1000px width*/
@media (min-width: 600px) {
    .video-stream {
        height: calc(100%);
        width: calc(20% - var(--layout-margin));
        margin-left: calc(0.5 * var(--layout-margin));
        margin-right: calc(0.5 * var(--layout-margin));
        resize: none;
    }

    /*log container on desktop*/
    .log-container {
        bottom: 20%;
        left: 70%;
        height: 80%;
        width: var(--log-width-desktop);
    }
}