@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(20, 20, 20);
}

.texte{
    font-family: 'Pixelify Sans';
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
    text-align: center;
}

.texte p{
    margin-top: 50px;
    font-size: 20px;
}

.decor {
    background-image: url(../img/desk.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 720px;
}

.macible img{
    height: 140px;
}

.leftlightbuttonclosed{
    position: absolute;
    left: 0px;
    bottom: 10px;
}

.leftlightbuttonopen{
    position: absolute;
    left: 0px;
    bottom: 10px;
}

.rightlightbuttonclosed{
    position: absolute;
    right: 0px;
    bottom: 10px;
}

.rightlightbuttonopen{
    position: absolute;
    right: 0px;
    bottom: 10px;
}

.ecran_victoire{
    height: 100%;
    backdrop-filter: blur(5px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Acme', sans-serif;
}

.ecran_victoire img{
    height: 400px;
    width: max-content;
}

.ecran_victoire h1{
    margin: 50px 0; 
}

.ecran_victoire a{
    text-decoration: none;
    background-color: white;
    padding: 10px 30px;
    color: black;
    border-radius: 20px;
}

#jouer_ambiance{
    background-color: rgb(116, 0, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 20px;
    cursor: pointer;
    font-family: 'Acme';
    font-size: 20px;
}