@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&display=swap');

*{
    font-family: 'IBM Plex Sans', sans-serif;
}

body{
    width: 100%;
    height: 100%;
    margin:0;
    overflow-y: scroll;
    background-color: darkslateblue;
}


    #myVideo {
        opacity: 1;
        transition: opacity 1s;
    }
    .mobile #myVideo{
        height: 100%;
    }
    .mobile .textC{
        z-index: 1;
        position: absolute;
        color: antiquewhite;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 20px;
        margin: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        font-size: 1.1em;
        

    }

    .mobile .maintext{
        z-index: 1;
        position: absolute;
        color: antiquewhite;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 20px;
        /* align-items: flex-end; */
        /* justify-content: center; */
        display: flex;
        height: 100%;
        font-size: 1em;
        opacity: 0;
        transition: opacity 1s;
        top: 100%;
        line-height: 1.4;
    }

    .mobile .maintext p{
        height: fit-content;
        padding-bottom: 35px;
        font-size: 1.2em;
    }
    .mobile .button{
        width: 50px;
        height: 50px;
    }


    .desktop #myVideo{
        max-width: 130%;
        min-height: 100%;
    }
    .desktop .textC{
        z-index: 1;
        position: absolute;
        color: antiquewhite;
        width: 100%;
        height: fit-content;
        box-sizing: border-box;
        padding: 20px;
        margin: 0px;
        display: flex;
        justify-content: space-between;
        font-size: 1.15em;
        z-index: 10;
    }
    .desktop .credentials{
        width: 20%;
    }
    .desktop .maintext{
        z-index: 1;
        position: absolute;
        color: antiquewhite;
        width: 80%;
        height: fit-content;
        box-sizing: border-box;
        padding: 20px;
        align-items: flex-end;
        justify-content: center;
        display: flex;
      /*  height: 90%;*/
        font-size: 1.4em;
        opacity: 0;
        transition: 1s opacity;
        top: 10%;
        line-height: 1.4;
            padding-right: 10%;
    }
    .desktop .button{
        width: 80px;
        height: 80px;
    }
    .desktop .button:hover{
        background-color: darkslateblue;
        cursor: pointer;
    }
    .desktop.open {
    }
    .desktop.open .maintext {
        opacity: 1;
    }
    .desktop.open .buttonC {
        width: 20%;
    }
    .desktop.open .buttonC svg {
        display: block;
    }
    .desktop.open #myVideo {
        /*filter: brightness(0.5);*/
        opacity: 0.5;
    }
 

.bg{
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0px;
    top: 0px;
    position: fixed;
    align-items: center;
    justify-content: center;
}







.button{
    border: 1px solid;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
}



.buttonC{
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 48%;
    color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    transition: 1s width;
    right: 0px;
    
}


svg{
    position: absolute;
    width: 50px;
    height: 50px;
    display: none;
    pointer-events: none;
}

a{
    color: antiquewhite;
}
