canvas { 
    width: 100%; 
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: transparent;
    z-index: 1;
}
.options {
    position: fixed;
    top: 50%;
    z-index: 10;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20%;
    left: 40%;
    height: 20%;
}
.options > .option-item {
    padding: 10px 10px;
    border-radius: 10px;
    background-color: rgba(255, 177, 0, 0.75);
    cursor: pointer;
    transition: linear 300ms;
    color: white;
    text-align: center;
    font-weight: bold;
}
.options > .option-item:hover {
    background-color: #dd3603e1;
}
.jet-fleurs {
    position: fixed;
    display: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.jet-fleurs img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
}
.nb-jouer {
    position: fixed;
    top: 110%;
    left: 0;
    width: 100%;
    font-size: 5px;
    z-index: 9;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 10px;
}


@media screen and (max-width: 610px) {
    .options {
        width: 50%;
        left: 25%;
        height: 30%;
    }
}