body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: #0073e6;
    color: white;
    padding: 20px;
}

.screenshots img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea, button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
}

button {
    background: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #f1f1f1;
    padding: 10px;
    margin-top: 20px;
}

/* Styles pour les liens de téléchargement */
.store-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espace entre les boutons */
    margin-top: 30px;
}

.store-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f4f4f4;
    transition: all 0.3s;
}

.store-link:hover {
    background-color: #e4e4e4;
    border-color: #007BFF;
}

.store-icon {
    width: 120px;
    height: auto;
    margin-right: 10px;
}

/* Conteneur principal centré */
main {
    width: 80%; /* 80% de la largeur de la fenêtre */
    max-width: 900px; /* Largeur maximale de 900px */
    margin: 0 auto;
    text-align: center; /* Centrer le texte dans main */
}

/* Liste et alignement des éléments */
ul {
    list-style-type: none; /* Enlève les puces par défaut */
    padding-left: 0; /* Enlève le padding par défaut */
    margin: 0; /* Enlève la marge par défaut */
    text-align: center; /* Centre les éléments de la liste */
}

li {
    margin-bottom: 10px; /* Espacement entre chaque élément de liste */
    font-size: 16px;
    line-height: 1.6;
}

/* Améliorer l'apparence du lien dans les sections */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}