
body {
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blur-section {
    backdrop-filter: blur(50px);
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.center-section {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 767px) {
    .blur-section {
        display: none;
    }
}


.video-call-screen-button{
    width:50px;
    margin:10px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#remoteVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    border: 1px solid;
}

#localVideo {
    position: absolute;
    bottom: 85px;
    right: 10px;
    width: 36%;
    height: 36%;
    border-radius: 10px;
    border: 2px solid white;
    object-fit: cover;
}