/* Importation des polices d'écriture */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0e1538;
    -webkit-user-select: none;
    overflow: hidden;
}
.container{
    width: max-content;
    height: auto;
}
.table{
    width: 100%;
    height: 100vh;
    margin-top:50px;
}
.row{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn{
    position: relative;
    width: 130px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 15px;
    margin: 8px 8px;
}

.boite{
    position: relative;
    width: 130px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 20px;
    margin: 0px 8px;
}

.boite::before{
    content: '';
    position: absolute;
    width: 90px;
    height: 140%;
    background: linear-gradient(#32A7FF, #FF3535);
    animation: animate 4s linear infinite;
}

.btn::after{
    content: '';
    position: absolute;
    inset: 4px;
    background: #0e1538;
    border-radius: 15px;
}

img{
    width: 85%;
    height: 85%;
    border-radius: 16px;
    margin: 5px;
    -webkit-user-drag: none;
}

.btn::before{
    content: '';
    position: absolute;
    width: 90px;
    height: 140%;
    background: linear-gradient(#32A7FF, #FF3535);
    animation: animate 4s linear infinite;
}


@keyframes animate
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.btn::after{
    content: '';
    position: absolute;
    inset: 4px;
    background: #0e1538;
    border-radius: 15px;
}

.btn h2 {
    position: relative;
    color: snow;
    font-size: 80px;
    z-index: 10;
}

.bouton{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button{
    transition: all 0.5s;
    color: snow;
    font-size: 20px;
    font-weight: 800;
    margin: 10px;
    border: none;
    outline: none;
    cursor: pointer;
}

.bouton-menu {
    transition: all 0.5s;
    border-radius: 15px;
    background-color: #318CE7;
    color: snow;
    font-size: 20px;
    font-weight: 800;
    transform: translateY(50%);
    margin: 10px;
    width: 200px;
    height: 60px;
    border: none;
    outline: none;
    cursor: pointer;
}

.bouton-menu:hover{
    transition: all .5s;
    background-color: #115998;
}

.bouton-config {
    transition: all 0.5s;
    border-radius: 15px;
    background-color: #318CE7;
    color: snow;
    font-size: 20px;
    font-weight: 800;
    transform: translateY(50%);
    margin: 10px;
    width: 200px;
    height: 60px;
    border: none;
    outline: none;
    cursor: pointer;
}

.bouton-config:hover{
    transition: all .5s;
    background-color: #115998;
}

.bouton-config-select{
    transition: all .5s;
    background-color: #115998;
}

.boiteImage{
    position: relative;
    width: 122px;
    height: 152px;
    border-radius: 15px;
    background: #0e1538;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}
.titre{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color:  #FFF;
    font-size: 80px;
}
.texte{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color:  #FFF;
    font-size: 20px;
}
.boitevide{
    position: relative;
    width: 130px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 15px;
    margin: 8px 8px;
}

.regle {
    position: relative;
    width: 900px;
    height: auto;
    display: flex;
    justify-content: left;  
    align-items: left;
    border-radius: 15px;
    margin: 8px 8px;
}

.pRegle {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    color: snow;
    font-size: 20px;
    font-weight: 800;
    margin: 10px;
}

.pRegle span {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    color: snow;
    font-size: 20px;
    font-weight: 800;
    margin: 10px;
}

.sous-titre {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: snow;
    font-size: 40px;
}

.score {
    display: flex;
    flex-direction: row;
    color: snow;
    margin-top: 5px;
}

.score span {
    background: rgba(0, 0, 0, .3);
    margin-left: 5px;
    padding: 5px;
    border-radius: 5px;
    color: snow;
}