body,
html {
    height: 100%;
    margin: 0;
    background-color: #000;
}
.navbar-brand {
    height: 40px;
}
.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 56px); /* Adjust for navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        -32deg,
        #6a82fb,
        #fc5c7d,
        #00c9ff,
        #fc5c7d,
        #6a82fb
    );
    background-size: 200% 200%;
    animation: gradientAnimation 20s ease infinite;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
    50% {
        background-position: 100% 50%;
        background-size: 300% 300%;
    }
    100% {
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
}
#remoteVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2; /* in front of overlay-controls */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}
#localVideoWrapper {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 20px;
    width: 200px;
    height: 150px;
}
#localVideo {
    width: 100%;
    border: 2px solid #fff;
    object-fit: cover;
    border-radius: 10px;
    background-color: #000;
}
@media (max-width: 810px) {
    #localVideoWrapper {
        top: 20px;
    }
}
#langText {
    color: #fff;
    text-transform: uppercase;
}
#infoText {
    display: inline-block;
}
.icon {
    margin-right: 4px;
}
.captions {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 2rem;
    z-index: 2;
    height: 96px;
    width: 720px;
    overflow-y: hidden;
}
@media (max-width: 720px) {
    .captions {
        width: 100%;
    }
}
.caption {
    background-color: rgba(0, 0, 0, 0.6);
}
.update {
    color: #aaa;
}
.controls-container {
    padding: 16px;
}
.blurred-video {
    width: 100%;
    filter: blur(64px);
    transform: scale(1.5);
}
@keyframes copiedFlash {
  0%   { background-color: #B7DDFB; }
  100% { background-color: #e9ecef; }
}
.copied {
  animation: copiedFlash 0.8s ease;
}
#joinSession, #copySession {
    display: none;
}
#navbarSupportedContent {
    flex-grow: 0;
}