/**font-family: 'Anton', sans-serif;**/




*{
    box-sizing: border-box;
}

body{
    background: rgb(6, 14, 36);
    font-family: 'Anton', sans-serif;
    color: #ffff;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin-top:60px;
    
}
header{   
    
    background-image: url("../assets/baniere.png");
    background-color: orange;
    background-size: cover; /* Assure que l'image couvre toute la section */
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    display: flex;
    border-bottom: 3px solid rgb(240, 142, 14);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    
  }

h1{
    margin: 20px 0 0;
    font-size: 50px;
    font-family: 'Shadows Into Light', cursive;
    letter-spacing: 10px;
    text-shadow: 2px 2px 2px black;
}
p{
    font-size: 16px;
}

.jeu-contenant{
    
    background-image: url('assets/paradis-terrestre.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 50px;
    height: 700px;
    width: 800px;
    position: relative;

    margin-bottom: 60px;
    border-bottom: 5px solid orange;
    border-radius: 0 0 25px 25px;

}


.figure-contenant{
    stroke: #ffff;
    stroke-width: 4px;
    stroke-linecap: round;

    fill: transparent;
}

.figure-partie{
    display: none;

}
.mauvaises-lettres-contenant{
    position: absolute;
    top: 50%;
    right: 10%;
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: center;
}

.mauvaises-lettres-contenant p{
    margin: 0 0 5px;
}
.mauvaises-lettres-contenant span{
    font-size: 24px;
    font-family: 'Shadows Into Light', cursive;
}

.mot{
    display: flex;
    position: absolute;
    bottom: 10;
    left: 50%;
    transform: translate(-50%);
}

.lettre{
    border-bottom: 3px solid rgb(255, 255, 255);
    display: inline-flex;
    font-size: 30px;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    height: 50px;
    width: 20px;
    font-family: 'Shadows Into Light', cursive;

}

.popup-contenant{
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;

}

.popup{
    background-color: #3a4858;
    border-radius: 5px;
    box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
}

.popup button{
    cursor: pointer;
    background-color: white;
    column-rule: #20252b;
    border: 0;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}
.popup button:active{
    transform: scale(0.90);
}

.popup button:focus{
    outline: 0;
}

.notification-contenant {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    position: fixed; /* Fixe la notification en bas de l'écran */
    bottom: -80px; /* Position initiale en dehors de l'écran */
    left: 50%; /* Centre horizontalement */
    transform: translateX(-50%); /* Ajuste le centrage horizontal */
    transition: bottom 0.3s ease-in-out; /* Transition pour le mouvement vertical */
    z-index: 1000; /* Assure que la notification est au-dessus d'autres éléments */
}

.notification-contenant.afficher {
    bottom: 20px; /* Position finale visible */
}

footer{
    
    background-color: rgb(6, 49, 96);
    display: flex;
    bottom: 0;
    width: 100%;
    justify-content: right;
    border-top: 5px solid orange;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
#contact{
    width: 250px;
    height:30px;
    color: rgb(255, 255, 255);

    position: relative;
    right: 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: cornflowerblue;
    border-radius: 5px;
    border-bottom: 5px solid orange ;
}