body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow: hidden;
    position: relative;
}

canvas{
    margin: auto;
}

.video-screen{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.630);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

#quit{
    position: absolute;
    top: 5%;
    left: 5%;
    text-decoration: none;
    background-color: #420F10;
    color: white;
    width: 100px;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

#quit:hover{
    cursor: pointer;
    background-color: #682021;
}

a:visited{
    color: unset;
}

.wrapper{
    position: absolute;
    top: 65%;
    width: 100%;
    height: 20%;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
}

.bulle{
    width: 65%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid black;
    filter: drop-shadow(8px 8px 0px black);
    background-color: #d3d9d5;
    padding: 0 20px 0 20px;
}

.bulle-texte{
    font-size: 1.5rem;
}

img{
    position: relative;
    top: 10px;
    width: 100%;
}

.portrait{
    background-color: #425A4C;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.5%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid black;
    filter: drop-shadow(8px 8px 0px black);
    overflow: hidden;
}

.btn{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #E5BA63;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    width: 200px;
    padding: 10px 35px 10px 35px;
    z-index: 1;
}

.btn:hover{
    cursor: pointer;
    background-color: #c98f1c;
}

.hidden{
    display: none;
}