:root {
    --cor-texto: #ffffff;
    --font-size-small: 12px;
    --font-size-medium: 16px;
    --font-size-large: 25px;
    --background-dark: rgb(15, 16, 39);
}

@font-face {
    font-family: ClanPro-Regular;
    src: url(fonts/FFClanProRegular.TTF);
}

@font-face {
    font-family: ClanPro-Bold;
    src: url(fonts/FFClanProBold.TTF);
}

.ClanProBold {
    font-family: 'ClanPro-Bold';
}

html {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgb(50, 48, 134), rgb(15, 16, 39) 30%);
}

body {
    background-color: var(--background-dark);
    font-family: 'ClanPro-Regular';
}

#background {
    height: 100%;
    background-image: linear-gradient(rgb(50, 48, 134), rgb(15, 16, 39) 30%);
}


#video {
    width: 100%;
    position: relative;
    object-fit: cover;
    z-index: 0;
    height: 600px;
}

.small {
    color: var(--cor-texto);
    font-size: var(--font-size-small);
}

.medium {
    color: var(--cor-texto);
    font-size: var(--font-size-medium);
}

.large {
    color: var(--cor-texto);
    font-size: var(--font-size-large);
}

.text {
    color: var(--cor-texto);
}

.video-container {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.video-container video {
    width: 100%;
    height: 600px;
    position: relative;
    object-fit: cover;
    z-index: 0;
    height: 600px;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
    z-index: 1;
    position: absolute;
    text-align: left;
    color: var(--cor-texto);
    padding-top: 50px;
    padding-left: 550px;
    right: 0px;
    width: 100%;
    height: 600px;
    background-image: linear-gradient(to right, rgba(50, 48, 134, 0) 0 10%, rgba(50, 48, 134, 1)60% 100%);


}

.video-container .question-popup {
    display: none;
    z-index: 2;
    position: absolute;
    text-align: left;
    color: var(--cor-texto);
    padding-top: 50px;
    width: 100%;
    height: 600px;
    /* background-image: linear-gradient(to right, rgba(50, 48, 134, 1) 0 30%, rgba(239, 168, 66, 1)95% 100%); */
    /* background-image: url('../img/T1E1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; */


}


#video-list {
    background-image: linear-gradient(to right, rgba(50, 48, 134, 1) 0 10%, rgb(15, 16, 39)60% 100%);
}

.video-container:hover {
    cursor: pointer;
}


.thumbnail:hover {
    cursor: pointer;
}

#buttons {
    position: absolute;
    text-align: center;
    width: 50%;
    bottom: 10%;


}

button {
    border-radius: 10px;
    border: none;
    font-size: 25px;
    color: var(--scor-texto);
    font-weight: bold;

}

#sim {
    background-color: rgba(239, 168, 66, 1);
    margin-right: 50px;

}

#nao {
    background-color: rgb(53, 47, 135);
}

.video-container .stars-popup {
    display: none;
    z-index: 3;
    position: absolute;
    text-align: left;
    padding-top: 50px;
    width: 100%;
    height: 600px;
    background-color: #ffffff;

}

#review {
    height: 120px;
    width: 95%;
    word-break: break-word;
}


#review-close {
    width: 5%;
    top: 10px;
    position: absolute;
    z-index: 1000;
    right: 10px;

}




@media screen and (min-width: 1600px) {


    #video {

        height: 800px;
    }

    .video-container .caption {
        z-index: 1;
        position: absolute;
        text-align: left;
        color: var(--cor-texto);
        padding-top: 50px;
        padding-left: 550px;
        left: 0px;
        width: 100%;
        height: 800px;
        background-image: linear-gradient(to right, rgba(50, 48, 134, 0) 0 10%, rgba(50, 48, 134, 1)60% 100%);
    }
}

@media only screen and (max-width: 700px) {

    #video {

        height: 300px;
    }

    .video-container video {
        width: 360px !important;
        height: 200px !important;
    }

    .video-container .caption {
        padding-top: 5px;
        z-index: 1;
        position: absolute;
        text-align: left;
        color: var(--cor-texto);
        padding-left: 220px !important;
        right: 0px;
        width: 400px !important;
        height: 300px !important;
        background-image: linear-gradient(to right, rgba(50, 48, 134, 0) 0 10%, rgba(50, 48, 134, 1)60% 100%);


    }

    .video-container .question-popup {

        width: 400px !important;
        height: 300px !important;



    }

    #submit {
        font-size: 20px !important;

    }

    .stars-popup {
        height: 800px;
    }


    #buttons {
        position: absolute;
        text-align: center;
        width: 100%;
        top: 85%;
    }

    .small {
        font-size: 10px;
    }


    .medium {
        font-size: 11px;
    }

    .video-container .stars-popup {
        height: 700px;
    }


    #review-close {
        width: 10%;


    }
}