.Alc{
    width: 100%;
    display: flex;
    position: fixed;
    text-align: center;
    justify-content: center;
    z-index: 10;
    top: 0;
    animation: tremble .13s 3;
}
.alert {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px;
    border-radius: 5px;
    width: 400px;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    color: #fff;
}

.alert p, .alert span {
    margin-bottom: 0;
    height: 15px;
}


.close{
    background-color: transparent;
    border: none;
    font-size: 38px;
    color: white;
    padding: 0;
}

.close:hover{
    cursor: pointer;
    color: black;
}

.alert .close {
    margin-left: 10px;
    width: 25px;
}

@keyframes tremble {
    0%{transform: translateX(0px)}
    40%{transform: translateX(10px)}
    100%{transform: translateX(-10px)}
}

@media (max-width: 640px) {
    .alert{
        border: 1px;
        border-radius: 3px;
        width: 270px;
        padding: 8px;
        font-size: 13px;
    }
}
/* Style de la boîte modale */
.modal {
display: none; /* Masquer la boîte modale par défaut */
position: fixed; /* Positionnement fixe pour la superposition */
z-index: 1000; /* Z-index élevé pour s'assurer que la boîte modale est au-dessus de tout le reste */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Arrière-plan semi-transparent */
overflow: auto; /* Permettre le défilement si nécessaire */
}

/* Style du contenu de la boîte modale */
.modal-content {
background-color: #ffffff;
margin: 20% auto; /* Centrage vertical et horizontal */
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 400px;
text-align: center;
}

/* Style pour les boutons de la boîte modale */
.ok-btn,
.cancel-btn {
padding: 10px 20px;
margin: 0 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}

.ok-btn {
background-color: #dc3545;
color: #fff;
}

.cancel-btn {
background-color: #007bff;
color: #fff;
}

/* Style pour les paragraphes de la boîte modale */
.modal-content p {
margin-bottom: 20px;
}

/* body{
    background: #eee;
} */

.de{
    height:100%;

}
/* a{
    text-decoration: none;
    position: absolute;
} */
.contain{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
}

.collect{
    display:flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    font-size: 20px;
    padding:  10px 20px;
    margin: 20px auto;
    background-color: rgba(0, 180, 10, 0.9);
    color: #fff;
    border-radius: 2px;
    /* align-items: center; */
}
h2{
    margin-top: 1%;  
    
}

embed{ 
    width: 100%;
    height: 750px;
    box-shadow: 2px 1px 15px 1px black;
    margin: 10px auto;
}

.notif{
    background-color: rgba(250, 0, 0, 0.4);
    color: white;
}

.del{
    margin-bottom: 25px;
}



@media screen and (max-width: 735px) and(min-width: 500px) {
    .contain, .collect{
        width: 500px;
    }
}
@media screen and (max-width: 499px) {
    .contain{
        width: 370px;
    }
    .collect{
        width: 350px;
    }



    .modal-content {
        margin: 35% auto; /* Centrage vertical et horizontal */
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        max-width: 300px;
        text-align: center;
    }

    .modal{
        background-color: rgba(0, 0, 0, 0.7); 
    }
}
@media screen and (min-width: 1080px) {
    body{
        width: 1200px;
        margin: 0 auto;
    }
    
    .contain{
        width: 900px;
    }
    .collect{
        width: 700px;
    }
}
