body {
    margin: 0;
    padding: 0;
    background-color: #222;
}

.container {
    width: 100%;
    max-width: 700px;
    height: 100%;
    margin: auto;
    background-color: rgb(26, 33, 46);
}

#index-tab{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.button{
    width: 30%;
    height: 35px;
    outline: none;
    border: none;
    border-radius: 15px;
    background-color: rgb(36, 66, 100);
    margin: auto;
    color: azure;
    font-size: 20px;
}

.button:disabled{
    color: rgb(61, 61, 61);
    background-color: #888;
}

#create-tab {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

#lobby{
    width: 100%;
    height: 25%;
}

#lobby > div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    width: 75%;
    height: 35px;
    color: azure;
    font-size: 25px;
    border: 1px solid rgb(66, 101, 142);
}

#link{
    margin: 15px auto;
    display: flex;
    flex-direction: row;
    width: 70%;
    height: 35px;
    border: 1px solid rgb(66, 101, 142);
    border-radius: 10px;
}

#copy-text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 8;
    font-size: 22px;
    color: wheat;
}

#small-button {
    flex: 1;
    outline: none;
    border: none;
    background-color: rgb(66, 101, 142);
    border-radius: 10px;
    font-size: 30px;
    color: azure;
}

#video-tab {
    width: 100%;
    height: 100%;
    position: relative;
}

#remote-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#local-video {
    width: 30%;
    height: 30%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.video {
    background-color: black;
}