@media only screen and (max-width: 600px) {
    #call-ui-root{
        height:var(--full-height);
        width:var(--full-width);
        display: flex;
        flex-direction: column;
        overflow-y: hidden;
    }

    #main-video-container{
        height:70%;
        width:100%;
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-video-standard{
        height: 70%;
    }

    .main-video-fullscreen {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background-color: white;
    }

    #buttons-container{
        width:100%;
        height:20%;
        background-color:var(--base-bg);
        display:flex;
        flex-direction: row;
        align-items:center;
        justify-content:center;
    }

    .button-icon{
        height:5vh;
        width:5vh;
        margin-left:var(--button-hor-margin-portrait);
        margin-right:var(--button-hor-margin-portrait);
        display:flex;
        align-items:center;
        justify-content:center;
        font-size: 3vh;

        border-color: black;
        border-style: solid;
        border-width: 0.05em;
        border-radius: 50%;
    }

    .button-icon:hover{
        background-color: grey;
    }

    .screen-share{
        display:none;
    }
    
    #video-list-container{
        height:30%;
        width:100%;
        display:flex;
        flex-direction:row;
        align-items: center;
        justify-content: center;
        overflow-x: scroll;
        scrollbar-width: none;
    }

    /* the video block carrying the video */
    .video-block{
        height:100%;
        width:30%;
        margin:1%;
        background-color: var(--base-bg);
    }

    /* this contains the actual stream */
    .video-stream{
        height:95%;
        width:30%;
        margin:1%;
        background-color: var(--base-bg);
    }
}