@font-face {
    font-family: rtlunited;
    src: url('rtl.woff2');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

body {
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: rtlunited, sans-serif;
    color: rgb(253, 254, 255);
}

body.rtl {
    background-image: url('rtl.svg');
}

body.vox {
    background-image: url('vox.svg');
}

body.ntv {
    background-image: url('ntv.svg');
}

video {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body > div {
    width: 50vw;
    height: 50vh;
    background-color: rgb(34, 35, 37);
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 25vw;

}

body.rtl > div {
    background-image: url('rtl.svg');
}

body.vox > div {
    background-image: url('vox.svg');
}

body.ntv > div {
    background-image: url('ntv.svg');
}

button {
    background-color: rgb(253, 254, 255);
    padding: 12px 24px;
    border: 1px solid rgb(253, 254, 255);
    width: 100%;
    cursor: pointer;
}
