html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

#quizzContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#questionContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border:  2px solid #000;
    border-radius: 15px;
    width: 90%;
    padding: 5px 20px;
    margin: 20px 0px;
}

#questionContainer > div {
    width: 75px;
    height: 75px;
    border: 4px solid #000;
    border-radius: 100%;
}

#questionContainer > p {
    color: #000;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    max-width: 1100px;
    text-align: center;
}

#questionContainer > img {
    width: 100px;
}

#reponseContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 80%;
    height: 70%;
    border: 2px solid black;
    margin-bottom: 30px;
}

#chibi {
    width: 17%;
    border-radius: 100%;
}

.reponse {
    width: 8%;
    position: absolute;
    border-radius: 100%;
    padding: 10px;
    border: 2px solid #000;
    transition : transform 0.3s
}

.reponse:hover{
    cursor: pointer;
    transform: scale(1.05);
}

.infoHover {
    max-width: 25%;
    border-radius: 15px;
    border: 2px solid #000;
    padding: 10px 15px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    font-family: Poppins, sans-serif;
    display: none;
}


.infoHover > p {
    margin: 0;
}

.infoHover > img {
    width: 50px;
}

#firstRep {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s;
}

#firstRep:hover{
    transform: translateX(-50%) scale(1.05);
}

#firstRepHover {
    top: 25px;
    left: 57%;
}

#secondRep {
    bottom: 45px;
    right: 30%;
}

#secondRepHover {
    bottom: 45px;
    right: 10px;
}

#thirdRep {
    bottom: 45px;
    left: 30%;
}

#thirdRepHover {
    bottom: 45px;
    left: 10px;
}

#forthRep {
    bottom: 50%;
    left: 25%;
    transform: translateY(50%);
}

#forthRep:hover{
    transform: translateY(50%) scale(1.05);
}

#forthRepHover {
    bottom: 80%;
    left: 2%;
    transform: translateY(50%);
}

#fifthRep {
    bottom: 50%;
    right: 25%;
    transform: translateY(50%);
}

#fifthRep:hover{
    transform: translateY(50%) scale(1.05);
}

#fifthRepHover {
    bottom: 80%;
    right: 2%;
    transform: translateY(50%);
}

aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 50%;
    left: -100px;
    width: 3%;
    height: 65%;
    transform: translateY(-50%);
}

.circle {
    width: 20px;
    height: 20px;
    background-color: #D9D9D9;
    border-radius: 100%;
}

.active {
    background-color: #60B6FF;
    width: 30px;
    height: 30px;
}

#blueBar {
    background-color: #60B6FF;
    width: 40%;
    height: 2%;
    border-radius: 30px;
}

.resultats{
    width: 100vw;
    height: 100vh;
    background-color: rgb(231, 242, 252);
    z-index: 9999999;
    display: none;
    position: fixed;
}

.resultats > a{

    text-decoration: none;
    color: black;
}

.resultats > img {
    margin-left: 50%;
    transform: translateX(-50%);
}

.resultats > p{
    text-align: center;
    color: black;
    font-size: 3em;
}

#questionContainer>div>img {
    position: relative;
    top: -45%;
    left: -42%;
    scale: 0.7;
}