@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    box-sizing: border-box;
    background-color: #333;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: #333;
    margin: 0;
    padding: 0;
    display: flex;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
}

.videoContainer {
    background-color: #333;
    height: 50vh;
    margin: 3vh 0;
    position: relative;
}

.screen {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.videoOne {
    opacity: 50%;
}

.videoTwo {
    opacity: 50%;
}

.controlsContainer {
    display: flex;
    align-self: center;
    justify-content: center;
    opacity: 50%;
    width: 100vw;
}


.controls {
    color: #a8a5a5; 
    border-radius: 10px;
}

.controls .btn {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.controls .fa-play {
    color: #a8a5a5;
}

.controls .fa-stop {
    color: #a8a5a5;
}

.controls .fa-pause {
    color: #a8a5a5;
}

.btn:focus {
    outline: 0;
}

.opacityContainer {
    display: flex;
    justify-content: center;
    margin-top: 3vh;
    padding: 10px;
}

.opacityContainer input {
    max-width: 50%;
}

@media only screen and (max-width: 1024px) {
    .opacityContainer input {
        max-width: 100%;
    }
}

