* {
    box-sizing: border-box;
}

body, html {
    height: 100vh;
    width: 100%;
    position: absolute;
    margin: 0;
    padding: 0;

    background-color: #000000;
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
}

#main {
    /* Centered horizontally and vertically, filling the page at any size/resolution */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    padding: 0;
    margin: 0;

    /* To see what's going on, uncomment the following line */
    /* border: 1px solid red; */

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;

}

#videoElement {
    height: 98%;
    /* width: 100%; */
}

#selectSources {
    height: 2%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#selectSources select {
    color: #ffffff;
    background-color: #494949;
    border: 1px solid #ffffff;
    border-radius: 0.25rem;
    margin: 0.3rem;
}

/* #selectSources {
    display: none;
}
#selectSources:hover {
    display: flex;
} */