.personnes-tirage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 20px;
}

.personnes-tirage-container .logo {
    margin-bottom: 20px;
}

.personnes-tirage-container .container {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    width: -webkit-fill-available;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

.personnes-tirage-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #d6df28;
}
.fiche{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

#profile-image {
    width: -webkit-fill-available;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto;
    display: none;
    transition: transform 0.2s ease-in-out;
}

#profile-info {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    text-align: left;
}

#start-button {
    margin-top: 30px;
    width: auto;
    border: none !important;
    border-radius: 8px;
    padding: 15px 25px;
    transition: transform 0.2s ease-in-out, background-color 0.3s ease;
    /* animation: bounce 1.5s infinite; */
    background-color: #d6df28;
    cursor: pointer;
}

#start-button:hover {
   
    background-color: #000000;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes colorChange {
    from { color: #d6df28; }
    to { color: #333; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Grille */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.profile-grid img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
