body {
    font-family: Arial, sans-serif;
    background: #34495e;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

header {
   margin: 0 auto;
    width: 100%;
}

h1 {
    text-align: center;
    color: #fff;
}

.container {
    text-align: center;
}

input {
    width: 80%;
    height: 100px;
    min-height: 25vh;
    padding: 10px;
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    background: #fff;
    display: block;
    line-height: 20px;
    margin: 0 auto;
    margin-bottom: 10px;
}

button {
    padding: 8px 16px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

button:hover {
    border-radius: 5px;
}

button#clearButton {
    background-color: #e74c3c;
}

button#clearButton:hover {
    background-color: #c0392b;
}

button#copyButton {
    background-color: #2ecc71;
}

button#copyButton:hover {
    background-color: #27ae60;
}

button#transformButton {
    background-color: #3498db;
}

button#transformButton:hover {
    background-color: #2980b9;
}


#outputText {
    font-style: normal;
}

/* Ajoutez ces classes pour le style bold et italic */
#outputText.italic {
    font-style: italic;
}

#outputText.bold {
    font-weight: bold;
}

.white{
  color: #fff;
}

/* Pour les écrans de plus de 1200px de largeur */
@media (min-width: 1200px) {
    input {
        width: 50%;
    }
}

/* Pour les écrans de moins de 1200px de largeur */
@media (max-width: 1200px) {
    input {
        width: 80%;
    }
}