/* Style général */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #fff;
}

/* En-tête */
header {
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid #ffb400;
}

.logo {
    font-family: 'Passion One', cursive;
    font-size: 3rem;
    color: #ffb400;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header a {
    text-decoration: none;
    color: #fff;
}

header .cta {
    background-color: #ffb400;
    color: #000;
    padding: 8px 12px;
    border-radius: 5px;
}

/* Section Téléchargement */
.download-section {
    text-align: center;
    padding: 50px 20px;
}

.download-section h1 {
    font-size: 3rem;
    color: #ffb400;
}

.download-section p {
    margin: 15px 0;
    font-size: 1.2rem;
}

.download-buttons img {
    height: 60px;
    margin: 10px;
}

.qrcode img {
    margin-top: 20px;
    height: 100px;
}

.qrcode p {
    margin-top: 10px;
    font-size: 1rem;
}

/* Styles pour la section de téléchargement */
.download-section {
    display: flex;
    justify-content: space-between; /* Espace entre les éléments */
    align-items: center; /* Aligne les éléments verticalement */
    padding: 50px 20px; /* Ajoutez un peu d'espace autour de la section */
}

/* Styles pour l'image homescreen */
.homescreen-image {
    display: flex;
    justify-content: center; /* Centre l'image horizontalement */
    align-items: center; /* Centre l'image verticalement */
}

.homescreen-image img {
    height: 400px; /* Ajustez la taille selon vos besoins */
    width: auto; /* Maintient le ratio d'aspect de l'image */
    margin-left: 20px; /* Espace à gauche de l'image */
}

h1 {
    font-family: 'Passion One', cursive; /* Utiliser Passion One pour les titres */
    font-size: 3rem; /* Ajustez la taille selon vos besoins */
    color: #ffb400; /* Exemple de couleur, ajustez selon vos besoins */
}

p {
    font-family: 'Passion One', cursive; /* Utiliser Passion One pour les titres */
    font-size: 3rem; /* Ajustez la taille selon vos besoins */
    color: #ffff; /* Exemple de couleur, ajustez selon vos besoins */
}
