.image_one {
    background-image: url('../assets/img_accueil.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    width: 32vw;
    height: 32vw;
    border-radius: 4px;
    cursor: pointer;
}

main {
    margin-top: 8vh;
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 8vw;
    row-gap: 10vh;
}


.loader {
    position : fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: black;
    /* background-size : contain; */
    height: 100%;
    width: 100%;
    margin: 0;
    
    cursor : wait;
}

.img_loader {
    display: block;
    position: absolute;
    top: 42%;
    left: 46%;
    /* left: 50%; */

    
    width: 7%;


    /* transform: translate(-50%, -50%); */

    animation: rotation 2s infinite linear;

    
}

@keyframes rotation {
    from {
      transform: rotate(0deg) ;
    }
    to {
      transform: rotate(359deg) ;
    }
  }



@media only screen and (max-width: 800px) {
    .image_one {
        height: 45vh;
        width: 45vh;
    }
}

@media only screen and (max-width: 740px) {
    h1 {
        font-size: 32px;
    }
    .acces_jeu {
        font-size: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}