* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-image: url('../assets/splash.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    display: none; /* flex */
    background: url('../assets/texture-transparent.png') no-repeat center, linear-gradient(110deg, rgba(194, 34, 20, 1) 0%, rgba(88, 11, 9, 1) 100%);
    background-size: cover;
    width: 100%;
    height: 100%;
    flex-direction: column;
    z-index: 2;
}

.team-images {
    display: flex;
    flex-direction: row;
    flex: 1;
    width: 100%;
    max-height: 40%;
    position: relative;
    box-shadow: 0px 0px 500px 0px rgb(0, 0, 0);
}

.team-images:after {
    content: "";
    width: 100%;
    height: 10px;
    bottom: -10px;
    position: absolute;
    background: linear-gradient(90deg, #630503 0%, #bb0c09 50%, #630503 100%);
}

.team-images div {
    width: calc(100% / 3);
}

.team-images div:not(:first-of-type) {
    border-left: 2px solid #630503;
}

.team-images img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.points {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.points div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    height: 100%;
    font-family: 'URW Topic W01 Bold Italic', sans-serif;
    color: white;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    font-size: 1.8rem;
}

#contentFinal .points > div {
    flex: 1 0 50%;
    width: 100% !important;
}

.points h1 {
    margin-bottom: 50px;
}

.points p {
    background-color: #510706;
    width: 7rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

#roundOneQuiz #drie-zes-negen {
    margin: 50px 0 20px 0;
}

#drie-zes-negen {
    display: flex;
    align-items: center;
    height: 20%;
    padding: 0 10%;
}

#drie-zes-negen ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

#drie-zes-negen li {
    list-style: none;
    font-size: 3rem;
    font-family: 'URW Topic W01 Bold Italic', sans-serif;
    color: #bbbbbb;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    padding-right: 4px;
    align-items: center;
}

#drie-zes-negen li:nth-child(3n+3) {
    transform: translateY(-70%) scale(1.2);
    color: white;
}

#drie-zes-negen li.current {
    background-color: #510706;
    border-radius: 50%;
}

#roundOneQuiz #drie-zes-negen li:hover {
    background-color: #fdcb77;
    border-radius: 50%;
    cursor: pointer;
}

.videoplay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.videoplay video, .videoplay img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;

    object-fit: contain;
    background: url('../assets/texture-transparent.png') no-repeat center, linear-gradient(110deg, rgba(194, 34, 20, 1) 0%, rgba(88, 11, 9, 1) 100%);
    background-size: cover;
}

.videoplay > video.has-media-controls-hidden::-webkit-media-controls {
    display: none;
}

.video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px calc(50% - 50px);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.95;
    cursor: pointer;
    background-image: linear-gradient(transparent, #000);
    transition: opacity 150ms;
    z-index: 1001 !important;
}

.video-overlay-play-button:hover {
    opacity: 1;
}

.video-overlay-play-button.is-hidden {
    display: none;
}

.answerbox {
    position: absolute;
    height: 40%;
    width: 45%;
    top: 10%;
    left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'URW Topic W01 Bold Italic', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
    color: white;
    z-index: 3;
}

.answerbox h2 {
    margin-bottom: 0.5rem;
}

.answerbox h2.blurry {
    color: transparent;
    text-shadow: 0 0 20px rgba(0,0,0,0.6);
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

#movieFrameWrapper {
    display: none;
    position: absolute;
    top: 10%;
    right: 0;
    width: 50%;
    height: 40%;
}

#movieFrameWrapper img {
    max-width:100%;
    max-height:100%;
    border: 4px solid #510706;
}

.lowest {
    position: absolute;
    bottom: 15%;
}

.leftpoints {
    width: 40%;
    margin-left: 55%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .points div, .answerbox {
        font-size: 1.5rem;
    }
}