body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-section {
    margin-bottom: 20px;
}

.output {
    margin-top: 20px;
}

.font-example {
    margin-bottom: 20px; /* Espacement entre chaque police */
}

.font-name {
    font-weight: bold;
    margin-bottom: 5px; /* Espacement entre le nom de la police et le texte */
}

.text-line {
    display: flex; /* Affiche les textes sur une seule ligne */
    justify-content: space-between; /* Espace entre les blocs */
}

.font-text {
    flex: 1; /* Chaque texte occupe une proportion égale de l'espace disponible */
    padding: 5px;
}

.normal-text {
    font-weight: normal;
}

.bold-text {
    font-weight: bold;
}

.italic-text {
    font-style: italic;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
