body {
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 65px;
}

.main {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cards {
    display: flex;
    gap: 20px; /* Espace entre les cartes */
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


button {
    margin-bottom: 10px;
    padding: 15px 30px; /* Augmente la taille des boutons */
    font-size: 20px; /* Augmente la taille du texte des boutons */
    cursor: pointer;
}

img {
    max-width: 100%;
    width: 250px;
    height: auto;
}

/* Media query pour les petits écrans */
@media (max-width: 1000px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    
    button {
        font-size:50px;    
        padding: 50px 150px;
    }
    
    img {
        width:300px;
    }
}
#test {
    max-width: 100%;
    width: 200px;
    height: auto;
    display:block;
    margin:auto;
}