﻿@charset "utf-8";
#MainContainer {
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
}

#VideoContainer {
    pointer-events: none;
}

#language-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

#french-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 10px solid #00A7FF;
}

#english-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 10px solid #FF008B;
}

#question-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.answer-container {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 250px;
    margin: auto;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 50px;
}

.answer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    pointer-events: none;
    font-size: 22px;
}

#answer1-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 10px solid #00A7FF;
}

#answer2-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 10px solid #FF008B;
}

#message-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    font-size: 20px;
}

#message-line1 {
    color: #FF008B;
}

#message-line2 {
    color: #00A7FF;
}

#intro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    text-align: center;
    color: white;
}

#intro-firstline {
    position: relative;
    width: 100%;
    height: 50%;
}

#deepimpact-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#intro-secondline {
    position: relative;
    width: 100%;
    height: 50%;
}

#intro-chuv-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%;
}

#outro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    text-align: center;
    color: #FF008B;
}

#outro-firstline {
    position: relative;
    width: 100%;
    height: 80%;
}

#outro-chuv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#outro-secondline {
    position: relative;
    width: 100%;
    height: 20%;
    text-align: center;
}


#answer1-background:active {
    background-color: gray;
}

#answer2-background:active {
    background-color: gray;
}

@media (hover:hover) {
    #fullscreen-toggle:hover {
        background-color: gray;
    }
    #skip:hover {
        background-color: gray;
    }
    #play-button:hover {
        background-color: gray;
    }
    #answer1-background:hover {
        background-color: rgb(0, 65, 131);
    }
    #answer2-background:hover {
        background-color: rgb(121, 0, 82);
    }
}

@media screen and ( max-width: 1900px) {
    body {
        font-size: 15px;
    }
    #question-container {
        width: 90%;
    }
    #language-container {
        width: 90%;
    }
    .answer-container {
        width: 180px;
        height: 180px;
        margin: auto;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 25px;
    }
    .answer-text {
        font-size: 15px;
    }
    #message-container {
        font-size: 20px;
    }
}

@media screen and ( max-width: 1000px) {
    body {
        font-size: 12px;
    }
    #question-container {
        width: 90%;
    }
    #language-container {
        width: 90%;
    }
    .answer-container {
        width: 180px;
        height: 180px;
        margin: auto;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 25px;
    }
    .answer-text {
        font-size: 12px;
    }
    #message-container {
        font-size: 15px;
    }
}

@media screen and ( max-width: 750px) {
    body {
        font-size: 10px;
    }
    #question-container {
        width: 90%;
    }
    #language-container {
        width: 90%;
    }
    .answer-container {
        width: 150px;
        height: 150px;
        margin: auto;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 25px;
    }
    .answer-text {
        font-size: 10px;
    }
    #message-container {
        font-size: 12px;
    }
}

@media screen and ( max-width: 520px) {
    body {
        font-size: 10px;
    }
    #question-container {
        width: 95%;
    }
    #language-container {
        width: 95%;
    }
    .answer-container {
        width: 130px;
        height: 130px;
        margin: auto;
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 20px;
    }
    .answer-text {
        font-size: 10px;
    }
    #message-container {
        font-size: 10px;
    }
}

#fullscreen-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 15px;
    background-color: black;
    border: 1px solid white;
    color: white;
    padding: 10px;
}

#fullscreen-toggle:active {
    background-color: gray;
}

#skip {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-radius: 15px;
    background-color: black;
    border: 1px solid white;
    color: white;
    padding: 10px;
}

#skip:active {
    background-color: gray;
}

#play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: black;
    border: 2px solid white;
    color: white;
    padding: 15px;
    font-size: 30px;
}

#play-button:active {
    background-color: gray;
}

#loading-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
}

.lds-dual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 34px;
    height: 34px;
    margin: 8px;
    border-radius: 50%;
    border: 4px solid grey;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#skip-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#play-text {
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 15px;
    font-size: 38px;
}

#play-left {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: black;
    border: 2px solid white;
    color: white;
    padding: 15px;
    font-size: 30px;
}

#play-left:active {
    background-color: gray;
}

#play-right {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: black;
    border: 2px solid white;
    color: white;
    padding: 15px;
    font-size: 30px;
}

#play-right:active {
    background-color: gray;
}