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

/* général */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Oswald", sans-serif;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 50%; /* Déplace l'image de 50% vers le bas */
    left: 50%; /* Déplace l'image de 50% vers la droite */
    transform: translate(-50%, -50%); /* Recentre l'image en ajustant sa position de moitié de sa taille */
    height: 100%;
    max-width: 100%;
    z-index: 2;
}
.indicator {
    position: absolute;
    z-index: 3;
    color: #000;
    font-size: 50px;
    font-weight: 900;
    font-family: "Caveat", cursive;
}
/* Page Phase 1 */
#divScoreBlue {
    top: 38%;
    left: 13%;
    transform: translateX(-50%);
}
#divScoreYellow {
    top: 38%;
    left: 61.5%;
    transform: translateX(-50%);
}
#divScoreRed {
    bottom: 8%;
    left: 32%;
    transform: translateX(-50%);
}
/* Page finale */
.hearts > img {
    display: none;
}

#videoElement {
    position: absolute;
    z-index: 0;
    max-height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-43%, -50%); /* Recentre l'image en ajustant sa position de moitié de sa taille */
    z-index: 1;
}
#timer {
    bottom: 22%;
    left: 27.5%;
    transform: translateX(-55%);
}
#response {
    position: absolute;
    z-index: 3;
    font-family: "Caveat", cursive;
    color: #FFF;
    font-size: 45px;
    font-weight: 900;
    bottom: 12%;
    left: 50%;
    transform: translateX(-30%);
}
#question {
    position: absolute;
    z-index: 3;
    width: 70px;
    height: 40px;
    bottom: 0;
    right: 0;
    font-size: 30px;
    color: #FFF;
}
#videoContainer {
    position: absolute;
    z-index: 3;
    width: 1100px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
#videoContainer > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
}